Skip to main content

I want to create an IF formula so that if a a calculation > 0, then the calculated positive % + “ ✅ ” should populate, but if the calculated formula is < 0, then the calculated negative % + “ 🛑 ” should populate. When I do write this formula, the correct number and emoji shows up, but the calculated value has many decimal places.


How can I change the formula so that no decimal places will appear (e.g. 35%)?


Formula:

IF(

(1-SUM({Apr 2020 Staffing 1},{Apr 2020 Staffing 2},{Apr 2020 Staffing 3}))>0,


✅ ” & " " & (1-SUM({Apr 2020 Staffing 1},{Apr 2020 Staffing 2},{Apr 2020 Staffing 3}))*100 & “%”,


🛑 ” & " " & (1-SUM({Apr 2020 Staffing 1},{Apr 2020 Staffing 2},{Apr 2020 Staffing 3}))*100 & “%”)


I actually solved it by using round() formula.


Reply