Hi! I have a sheet that calculates Priority based on how Volume and Complexity are answered (out of Low/Medium/High). It's no doubt probably bloated, but working perfectly.
HOWEVER, I need the end user to better understand what constitutes volume being considered "Low". What I would really like to do is change the dropdown options on Volume from Low, Medium, High to:
- Low (<10/month),
- Medium (11-20/month),
- High (>21/month).
Likewise, I'd like to change the dropdown options on Complexity from Low, Medium, High to:
- Low (involves only legal)
- Medium (involves 1-2 other business units)
- High (involves 3+ business units).
Unfortunately, that breaks my formula. I've tried to fix it in a couple different ways, but none are working.
If there is a different way to provide guidance to the user without making the criteria part of the dropdown, I'm open to that too.
Here's the formula:
=IF(AND(Complexity@row = "Low", Volume@row = "High"), "High", IF(AND(Complexity@row = "high", Volume@row = "Low"), "Low", IF(AND(Complexity@row = "medium", Volume@row = "High"), "Medium", IF(AND(Complexity@row = "High", Volume@row = "Medium"), "Medium", IF(AND(Complexity@row = "High", Volume@row = "High"), "Medium", IF(AND(Complexity@row = "Medium", Volume@row = "Medium"), "Medium", IF(AND(Complexity@row = "Low", Volume@row = "Medium"), "Medium", IF(AND(Complexity@row = "Medium", Volume@row = "Medium"), "Medium", IF(AND(Complexity@row = "Low", Volume@row = "Low"), "Quick Win", IF(ISBLANK(Complexity@row), " ", "Low"))))))))))