Good Afternoon
I have a decimal field that is created from calculating the total time. IE 7:00 AM to 7:45 AM = 0.75
What I am trying to do figure out is additional rounding.
If the field $regular_hours_1 = 0.18 I need to write a formula that calculates $regular_hours_round_1 = 0.25
Not sure the proper way to do this, either a rounding formula or an if/else statement.
Between 0.00 - 0.12 = Round to 0.00
Between 0.13 - 0.37 = Round to 0.25
Between 0.38 - 0.62 = Round to 0.50
Between 0.63 - 0.87 = Round to 0.75
Between 0.88 - 0.99 = Round to 1.00
I have gotten this far on doing the time calculations, its this part that I cannot figure out.
Appreciate it