Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

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

Recommended Posts

Posted

I have a field called "State Withholding Tax". In it I need it to look at "Gross_f" and if it is between 0 and 30, it will show 0.00. If it is between 30 and 85, it will show 1.00. If it is between 85 and 140, it will show 2.00. And finally if it is between 140 and 160, it will show 3.00. I tried this :)

Case ( 

Gross_F = 0 & < 30 ; 0.00

; Gross_F > 30 & < 85 ; 1.00 

; Gross_F > 85 & < 140 ; 2.00 )

But it doesn't work. Any advice.

Thanks

Posted (edited)

Case (

Gross_F >= 0 and Gross_F < 30 ; 0;

Gross_F > 30 and Gross_F < 85 ; 1;

Gross_F > 85 and Gross_F < 140; 2

)

or if you dont have any mumber lower than 0 then it can simply be:

Case (

Gross_F < 30 ; 0;

Gross_F < 85 ; 1;

Gross_F < 140; 2

)

Edited by Guest
Posted

Sorry, I have not replied in a while. Had pnemonia and out of service for quite some time. Close call I guess. I really appreciate your help, I will work on the formula and get back to ya. Thank you very much.

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