Hey Smartsheet Community,
I was able to get the info I wanted using three different formulas but I wanted to know if it was possible to make this work with one big formula?
Formula 1 - Symbol Colors for Major Project Completion Status
=IF(AND([*Dropdown-Single*]17 = "Major Project", [*Date*]6 < TODAY(-30), [*Text*]55 < 90), "Red", "Green")
Formula 2 - Symbol Colors for Non-Major Project Completion Status
=IF(AND([*Dropdown-Single*]17 <> "Major Project", [*Date*]6 < TODAY(-5), [*Text*]55 < 90), "Red", "Green")
Formula 3 - Takes the info from Formula 1 and Formula 2 and displays correct color based on the project type
=IF([*Dropdown-Single*]17 = "Major Project", [*Symbol*]75, [*Symbol*]76)
Is it possible for me to combine Formula 1 and 2 into one cell instead of using 3 cells to get to my desired goal?
Thank you!
-Myles