swf Posted April 9, 2005 Posted April 9, 2005 Is this a valid argument for a calculated field checkbox Case(testfield="a" or "b";1;) Should place a 1 in the checkbox if the testfield is either a or b To expand: Is this valid Case(testfield=("a"or"b") and testfield2 >"5";1;) should place a 1 in the checkbox if the testfield is either a or b and simultaneously the testfield2 >5. Seems like it should work but I am not having success.
Ender Posted April 9, 2005 Posted April 9, 2005 Try: (testfield="a" or testfield="b") and testfield2>5 The field needs to be part of each test. The Case is redundant if the calc field is a number.
Recommended Posts
This topic is 7237 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now