Here's what I have:
This works but I need to add one more condition, a check to see if an asterisk is present in $BR5. If it is then "Floor Plans" should be displayed. Here's the additional code but I'm not sure where to insert it:
What seems to be tripping me up is "Floor Plans" should be the result if NONE of the conditions are met.
I'm stumped.
Excel Formula:
=IF(OR(ISNUMBER(SEARCH({"*1114M*","*1110*","*1109M*","*1091*"},$C5))),"No Floors",IF(OR(ISNUMBER(SEARCH({"SLAB - GL","SLAB - GR","SLAB"},H5))),"Slab",IF(OR(ISNUMBER(SEARCH({"Open Web"},$H5))),"Open Web","Floor Plans"))))
This works but I need to add one more condition, a check to see if an asterisk is present in $BR5. If it is then "Floor Plans" should be displayed. Here's the additional code but I'm not sure where to insert it:
Excel Formula:
,IF(OR(ISNUMBER(SEARCH("~*",$BR5))),"Floor Plans"
What seems to be tripping me up is "Floor Plans" should be the result if NONE of the conditions are met.
I'm stumped.