Jump to content

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

Recommended Posts

Posted

I want a field to display one of two numbers - both of which are in caluclation fields called "Override Commission" and "Total Cycle Balance". I want it display the field that holds value. Only one of the fields will have a value, the other will = $0.00

So, i started with this calculation:

Case(

not IsEmpty(Override Commission), Override Commission,

not IsEmpty(Total Cycle Balance), Total Cycle Balance,

""

)

The problem is that my Override Commission Field is a calculation and when it ='s zero it displays $0.00 and is not empty. So this doesn't work. Any suggestions?

Posted

Personally I HATE calcs that are based upon two or more totally unrelated fields, which results in a case that could have multiple correct evaluations.

Case(

Override Commission > 0, Override Commission,

not IsEmpty(Total Cycle Balance), Total Cycle Balance,

""

)

Now what do you do if the Override Comission calc is greater than 0.00 and there is something in Total Cycle Balance? Just let Filemaker decide?

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