If price above/below number of cents...

Options

I'm new to SmartSheet and am struggling to create a formula for the following:

If number ends in 0-29, round DOWN to nearest 0.95, (ex. FLOOR(A1,1)-0.05). Otherwise, if number ends in 30-99 cents, round UP to nearest 0.95 (ex. CEILING(A1,1)-0.05).

ie: $59.29 rounds to $58.95. $59.30 rounds to $59.95

Can anyone help me put the pieces together?

Tags:

Best Answer

  • Jason Tarpinian
    Jason Tarpinian ✭✭✭✭✭✭
    edited 05/04/23 Answer ✓
    Options

    I think this should do what you're looking for, as long as all of your values in "Price" are formatted to 2 decimals:

    =IF(VALUE(RIGHT(Price@row, 3)) <= 0.3, FLOOR(Price@row, 1) - 0.05, CEILING(Price@row, 1) - 0.05)

    Jason Tarpinian - Sevan Technology

    Smartsheet Aligned Partner

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!