Sep 10, 2023 06:38 PM
Heyo!
I'm stratching my head as to how exactly format a formula down to first .00 numbers for an email automation.
Inspite what I've attempted it continues to display all 13 numbers for "M1" calcuation. Screenshots attached.
Solved! Go to Solution.
Sep 11, 2023 06:17 AM
Wrap all your calculations in ROUND({calculation}, 2)
This should work
IF({Cycle} = "W1", ROUND({Rent P/W}, 2),0) + IF({Cycle} = "W2", ROUND({Rent P/W}*2, 2),0) + IF({Cycle} = "M1", ROUND({Rent P/W}*365/84, 2),0)
Sep 11, 2023 06:17 AM
Wrap all your calculations in ROUND({calculation}, 2)
This should work
IF({Cycle} = "W1", ROUND({Rent P/W}, 2),0) + IF({Cycle} = "W2", ROUND({Rent P/W}*2, 2),0) + IF({Cycle} = "M1", ROUND({Rent P/W}*365/84, 2),0)
Sep 11, 2023 03:24 PM
It did! Thank you very much!