Formula Question

Hi
I have the formula below. If I need to add in another status "Need Info" in the formula, how can i add in?
=IF(AND([Approval Required]@row = "Yes", [Status]@row = "Review"), VLOOKUP(CM@row, {CM Range 1}, 3, 0), VLOOKUP(Comm@row, {CM Range 1}, 2, 0))
The screenshot as attach
Best Answer
-
Hey @HZAR
try this:
=IF(AND([Approval Required]@row = "Yes", OR([Status]@row = "Review",[Status]@row ="Need Info")), VLOOKUP(CM@row, {CM Range 1}, 3, 0), VLOOKUP(Comm@row, {CM Range 1}, 2, 0))
Will this work for you?
Kelly
Answers
-
Hey @HZAR
try this:
=IF(AND([Approval Required]@row = "Yes", OR([Status]@row = "Review",[Status]@row ="Need Info")), VLOOKUP(CM@row, {CM Range 1}, 3, 0), VLOOKUP(Comm@row, {CM Range 1}, 2, 0))
Will this work for you?
Kelly -
Hi @Kelly Moore
Thanks for the advise. Really works. Awesome and really appreciate your input
Help Article Resources
Categories
Check out the Formula Handbook template!