Feb 28, 2006 #1 ace323 IS-IT--Management Joined Feb 17, 2006 Messages 5 Location US I need help with a formula to calculate fringe benfits. I need it to do the following, I just can't seem to get the function to work right. If "gross pay" is < 1056.00 then do nothing. If its > 1056.00 then calculate the gross pay as 1056.
I need help with a formula to calculate fringe benfits. I need it to do the following, I just can't seem to get the function to work right. If "gross pay" is < 1056.00 then do nothing. If its > 1056.00 then calculate the gross pay as 1056.
Feb 28, 2006 #2 Turkbear Technical User Joined Mar 22, 2002 Messages 8,631 Location US Hi, How is that calculating anything? If you want to eliminate the decimals, then conditionally format the display.. Give an example of what you want to do... To Paraphrase:"The Help you get is proportional to the Help you give.." Upvote 0 Downvote
Hi, How is that calculating anything? If you want to eliminate the decimals, then conditionally format the display.. Give an example of what you want to do... To Paraphrase:"The Help you get is proportional to the Help you give.."
Feb 28, 2006 #3 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Do you mean this? if {table.pay} > 1056 then 1056 else {table.pay} -LB Upvote 0 Downvote