How to decrease decimal places in a percentage?

Sam Lugiano
βββββ
Hi,
How do I decrease the decimal places in the String Column to just read 230%πΊ? My work is below.
Thank You
Best Answer
-
You should use the ROUND function. You have two options:
- Wrap your % formula with a =ROUND(([YTD FEES 2021]@row - [YTD FEES 2020]@row)/[YTD FEES 2020]@row, 0)
- Wrap a ROUND around each of your calculations in the string =IF([%]@row <0, ROUND([%]@row*100,0) + "% up arrow", IF([%]@row <0, ROUND([%]@row*100,0) + "% down arrow".... etc...
Answers
-
You should use the ROUND function. You have two options:
- Wrap your % formula with a =ROUND(([YTD FEES 2021]@row - [YTD FEES 2020]@row)/[YTD FEES 2020]@row, 0)
- Wrap a ROUND around each of your calculations in the string =IF([%]@row <0, ROUND([%]@row*100,0) + "% up arrow", IF([%]@row <0, ROUND([%]@row*100,0) + "% down arrow".... etc...
-
Great. Thank you!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!