I have a spreadsheet that consists of just one worksheet (AvailableItems).
Column A is a list of parts that I stock (alpha-numeric-special characters)
Column D is a list of available parts (alpha-numeric-special characters)
Cell C2 contains the following formula - =IFERROR(VLOOKUP(A2,D:D,1,FALSE),""), and this formula is copied all the way down to C43000
The formula works correctly.
But if the part number being searched for exists in column D, but is preceded with “D-“ I want that to be seen as a find. Is there any way to adapt this formula to take that condition into consideration?
Example:
123456 from column A is being searched on in column D
123456 exists in column D so it is a “find” or “hit” so the appropriate cell in column C displays the part number
D-123456 also exists in column D so for me it too is considered a “find” or “hit” so I would like that part number to be displayed as well.
Column A is a list of parts that I stock (alpha-numeric-special characters)
Column D is a list of available parts (alpha-numeric-special characters)
Cell C2 contains the following formula - =IFERROR(VLOOKUP(A2,D:D,1,FALSE),""), and this formula is copied all the way down to C43000
The formula works correctly.
But if the part number being searched for exists in column D, but is preceded with “D-“ I want that to be seen as a find. Is there any way to adapt this formula to take that condition into consideration?
Example:
123456 from column A is being searched on in column D
123456 exists in column D so it is a “find” or “hit” so the appropriate cell in column C displays the part number
D-123456 also exists in column D so for me it too is considered a “find” or “hit” so I would like that part number to be displayed as well.