I have a sheet with the following formula in a column titled "Status":
=IF(ISBLANK([PO#]1), "Processing", IF(INDEX({Status Range}, MATCH([PO#]1, {PO Range}, 0)) = "Loaded", "OTR", IF(INDEX({Status Range}, MATCH([PO#]1, {PO Range}, 0)) = "available load", "Logistics Dept", IF(INDEX({Status Range}, MATCH([PO#]1, {PO Range}, 0)) = " ", "Processing", IF(INDEX({Status Range}, MATCH([PO#]1, {PO Range}, 0)) = "arrived", "Complete", "Processing")))))
It's intended to find the corresponding Status that's in the same row as the searched PO number (for example, 4500). It works fine when the PO Range in the target sheet only has one number, however if that cell had multiple values (1500, 4500, 3110), it returns a NO MATCH error. Is there a way to write this formula to be able to find the single 4-digit number in the search value among a group of 4-digit numbers and continue with the rest of the formula?
