Skip to main content
Solved

Round down to next $2.50

  • February 26, 2023
  • 2 replies
  • 25 views

Forum|alt.badge.img+3

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

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31
  • Brainy
  • 6414 replies
  • Answer
  • February 27, 2023

Try:

ROUNDDOWN( Value/2.50, 0 ) * 2.50


Forum|alt.badge.img+3
  • Author
  • New Participant
  • 1 reply
  • March 2, 2023

Try:

ROUNDDOWN( Value/2.50, 0 ) * 2.50


This worked, thank you so much for your help!