Mar 08 2023 07:02 AM
Hi,
Based on what is in the total box. I need to create a formula for the outcome:
less or equal to 20 = outcome will be Bi-Monthly (colour Green)
in between 20 and 70 = Outcome will be Monthly (Colour Amber)
greater or equal to 70 = Weekly (Colour Red)
Mar 08 2023 01:12 PM
Solution=IF(total<=20, "Bi-Monthly", IF(total<70, "Monthly", "Weekly"))
You can use conditional formatting to color the cell based on its value.
Mar 14 2023 01:21 AM