Jump to content

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

Recommended Posts

Posted

I have a calculation field that is field 1 * field 2. Field 1 always has data, but field 2 does not. I want the calculation to not occur if either field is blank. I have the option "Do not evaluate if all referenced fields are empty," but since field 1 is never empty it always returns a 0. I want to use this data in a graph, so I would like it to not calculate any data so it won't mess up my graph. Any advice on how keep the calculation from running?

Posted

Thanks Shadow. I am a novice, so bear with me... The "if" statement goes in the calculation for the field, yes? And what does the "" do? Thanks for the clarification.

Posted

Yes, that would be the full calculation instead of just field1 * field2. "" returns a null result. It isn't really necessary, though. You can use Case( not (IsEmpty(field1) or IsEmpty(field2)), field1 * field2 ), with no need to specify a 'false' result.

This topic is 7465 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.