Newbies NoahR Posted July 20, 2004 Newbies Posted July 20, 2004 Another question because y'all are so ******* smart. When I have a calculation field, I don't want it to calculate the result if ANY of the referenced fields are blank. I know of the "Do not calculate if all referenced fields are empty" check box, but of course that's not what I want. Is this possible?
The Shadow Posted July 20, 2004 Posted July 20, 2004 You can wrap your calculation with: If ( not (IsEmpty(field1) or IsEmpty(field2) or IsEmpty(field3) or ... ); <your calculation here> )
Lee Smith Posted July 20, 2004 Posted July 20, 2004 You can wrap your calculation with: If ( not (IsEmpty(field1) or IsEmpty(field2) or IsEmpty(field3) or ... ); <your calculation here> ) Two changes one is for US versa Non US and v7 and prior versons, and that is the ";" is a ",", and the calculation needs a comma after <your calculation here> and "" before the last ")" Here is the calculation modified to work in v6 etc. If( not (IsEmpty(field1) or IsEmpty(field2) or IsEmpty(field3)), <your calculation here> , "") Lee
Recommended Posts
This topic is 7692 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