Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

If price above/below number of cents...

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

  • Community Champion
    edited 05/04/23 Answer ✓

    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)

Answers

  • Community Champion
    edited 05/04/23 Answer ✓

    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)

  • That's exactly what I was looking for, thank you!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions