My company is moving to Smartsheet and we would like to have our "Priority" column automatically populate as Strategic, High, Medium, Low, or Not Prioritized depending on criteria in 2 separate columns (Impact and Urgency).
If Impact and Urgency = "High", Priority = "Strategic
If Impact = "High" and Urgency = "Medium", Priority = "High" or if Impact = "Medium" and Urgency = "High", Priority = "High"
If Impact = "Medium" and Urgency = "Medium". Priority = "Medium" or if Impact = "Medium" and Urgency = "Low". Priority = "Medium", or if Impact = "Low" and Urgency = "Medium". Priority = "Medium"
If Impact = "Low" and Urgency = "Low", Priority = "Low"
IF Impact = "Not Prioritized" and Urgency = "Not Prioritized", Priority = "Not Prioritized"
Formula so far that works:
=IF(AND(Impact@row = "High", Urgency@row = "High"), "Strategic")
Formula so far that is not working:
=IF(AND(Impact@row = "High", Urgency@row = "High"), "Strategic"), IF(AND(Impact@row = "High", Urgency@row = "Medium"), "High"), IF(AND(Impact@row = "Midium", Urgency@row = "High"), "High"), IF(AND(Impact@row = "Medium", Urgency@row = "Medium"), "Medium")