I have to columns in my Smartsheet.
Once column called "Activity" that is a drop-down with 10 values.
Another column called "Value" where I am putting my Nested IF formula. Basically I want a number to be returned in the Value column depending upon the selection of the drop-down in the Activity column.
To test just one IF statement first, I have this one which works just fine
=IF(Activity1 = "Hosted Upgrades", 5)
However, when I added a second IF statement just to test with two IF statements, this does NOT work
=IF(Activity1 = "Hosted Upgrades", 5, IF (Activity1 = “Content Migrations”, 4))
Can you help?