Round or Ceiling math expression

I want to round or ceiling to the nearest .25 with this app formula.

IF( iSBLANK([amount]) ,CEILING([calc hours]) * LOOKUP([Equipment], โ€œServicesโ€, โ€œServiceโ€, โ€œRateโ€) , LOOKUP([Job Name], โ€œAccountsโ€, โ€œAccountโ€, โ€œAmountโ€))

Some rates are $250/hour so I need to round by decimal places rather than by integers.

Solved Solved
0 6 978
1 ACCEPTED SOLUTION

@CMsDeveloper You can do that like CEILING([YourDecimalValue]*4)*0.25

View solution in original post

6 REPLIES 6

Steve
Platinum 4
Platinum 4

Thereโ€™s no built-in function to do what you want, so youโ€™ll have to calculate it.

@CMsDeveloper You can do that like CEILING([YourDecimalValue]*4)*0.25

Thats a lot cleaner of an expression that I had envisioned; cheers Aleksi.

Perfect. Thanks!

@Jonathon Simple is more beatiful

Youโ€™re welcome

Top Labels in this Space