Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7430 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

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?

Posted

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 wink.gif

This topic is 7430 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.