I am creating this long formula and it works fine until I add the last couple of conditions. I don't see anything wrong, any ideas??? It isn't past the 30 condition limit, but what do I know..
Basically:
IF either are "Low", then "Low"
ElseIF either are "Medium", then "Medium"
ElseIF either are "High", then "High"
Else "Very High".
Edit: I see you have an else condition in there... So I guess that'll throw off my thinking.
After further review, it looks like it's working okay... you have
If Either is Low, then Low
Else if M/VH, M/H, MM then Medium
Else if H/VH, H/H, HM then High
Else if VH/VH, VH/H, VH/M
With the first part being an OR, every condition is covered. If you change it to AND instead of OR, then I can get an "Else" result with VH/L. I think my formula would give the same results as yours is giving on my machine. (Running 2010 though)
Last edited by Fizziii; Feb 8th, 2011 at 02:50 PM.
I may have set up the formula wrong, but check out the attached matrix, it may make sense what I did. I used the OR's to save some IFs' for the LOW values....
Assuming your input is in cells F8 & G8, my formula should work. It basically returns the lowest value among the 2. Just like your formula started out, but then using "or" with Medium and High in both cells as well. Then if neither one has low, it will check for medium, if it doesn't find that it will look for high, and if it doesn't find that it'll default to Very High.
F8 & G8 don't have multiple values in them, do they?
Please see my attached file for how I set this up.
The formula posted by Fizziii should work for most cases, the case in which it gives a wrong(?) result is if both cells are empty. The result of the formula is "Very High", I assume that would not be correct. However this case might never happen.
You're welcome to rate this post!
If your problem is solved, please use the Mark thread as resolved button Wait, I'm too old to hurry!
The formula posted by Fizziii should work for most cases, the case in which it gives a wrong(?) result is if both cells are empty. The result of the formula is "Very High", I assume that would not be correct. However this case might never happen.
This will fix the issue brought up by opus. Thank you opus. (I just added one last if... if both are "VERY HIGH", then it's "VERY HIGH", otherwise it's "ELSE")