I'd like to combine multiple IF/OR statements so when I update my status column another column will auto update:
When Status is Complete or Received list Full, if not, list Empty; when Status is In Process or Quoted list Quarter, if not, list Empty; when Status is Dispatched or Ordered list Half, if not, list Empty.
Is something like this possible? Or am I going about it in the wrong way.
I believe there is an error w/ the Empty section as it is being referenced multiple times. Do I move this to the end?
Here is what I have thus far:
=IF(OR(Status1 = "Complete", Status1 = "Received"), "Full", "Empty", IF(OR(Status1 = "In Process", Status1 = "Quoted"), "Quarter", "Empty", IF(OR(Status1 = "Dispatched", Status1 = "Ordered"), "Half", "Empty")))
Might I need to do individual nested IF statements?
Any suggestions or resolutions are welcome :)