I have a repair database that when I put in "Waiting for Parts" status (Column I), I will look up the repair ID (Column C) in [Parts Worksheet], and look if there is a match. If there is a match, it puts the same ID in Column A. This lets me know that I have a part inputted for the repair ID....
=IF(I886="WAITING FOR PARTS",IFERROR(VLOOKUP(C886,Quarter4[Repair ID],1,FALSE),""),"")
The thing I want to do, however, is to lookup not only if I have placed a part order, but the status. I know that the order I probably want to look for is:
1) If it has been received (Column S)= Return "Received"
2) If not received, has there been a PO cut = Return "Ordered"
3) If not ordered = return "Pending"
This would look for anything in the following boxes with any data with the matching repair ID. This would also return something useful instead of just the repair ID.
Any ideas?
=IF(I886="WAITING FOR PARTS",IFERROR(VLOOKUP(C886,Quarter4[Repair ID],1,FALSE),""),"")
The thing I want to do, however, is to lookup not only if I have placed a part order, but the status. I know that the order I probably want to look for is:
1) If it has been received (Column S)= Return "Received"
2) If not received, has there been a PO cut = Return "Ordered"
3) If not ordered = return "Pending"
This would look for anything in the following boxes with any data with the matching repair ID. This would also return something useful instead of just the repair ID.
Any ideas?