Jump to content

Need caculation to show invoice totals with a defined range


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

Recommended Posts

I am trying to create a "case" calculation in (FM7) that will return the invoice total if it is within the defined range.

How would I write a formula to show me an invoice total if it is in a range from "$251 to $500"?

Link to comment
Share on other sites

Is this a trick question, or...? Allright here's a little to choose from:

Case(aNumber>250 and aNumber<501;aNumber)

Case(not(aNumber ≤ 250 or aNumber ≥ 501);aNumber)

Case(aNumber ≤ 250 or aNumber ≥ 501 xor 1;aNumber)

Case(aNumber ≤ 250 or aNumber ≥ 501;Case(0;0);aNumber)

Case(Div ( aNumber-1 ; 250 )=1;aNumber)

--sd

Link to comment
Share on other sites

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