I'm having issues getting a formula to round down prices to the nearest $2.50.
I've tried FLOOR()
FLOOR({Price}, 2.5)and ROUNDDOWN()
ROUNDDOWN({Price},2.5)but without any success. Thank you in advance.
I'm having issues getting a formula to round down prices to the nearest $2.50.
I've tried FLOOR()
FLOOR({Price}, 2.5)and ROUNDDOWN()
ROUNDDOWN({Price},2.5)but without any success. Thank you in advance.
Best answer by TheTimeSavingCo
Try:
ROUNDDOWN(
Value/2.50,
0
)
* 2.50
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.