Hello,
In column A, I have a list of text (not unique). In column B, I have prices that match with the text in column A. Although, many of these cells in column B are empty. I need a formula to put into column C that will look up the text from the corresponding cell in column A, and search the rest of column A for the cells with the same text. If it finds one, it should copy that price and put it into the cell.
Before:
After:
Matt
In column A, I have a list of text (not unique). In column B, I have prices that match with the text in column A. Although, many of these cells in column B are empty. I need a formula to put into column C that will look up the text from the corresponding cell in column A, and search the rest of column A for the cells with the same text. If it finds one, it should copy that price and put it into the cell.
Before:
Excel Workbook | ||||
---|---|---|---|---|
A | B | |||
1 | 434.99|579.99|Rear Bumpers | 460 | ||
2 | 434.99|579.99|Rear Bumpers | * | ||
3 | 434.99|579.99|Rear Bumpers | * | ||
4 | 434.99|599.99|Rear Bumpers | * | ||
5 | 434.99|599.99|Rear Bumpers | 500 | ||
6 | 434.99|599.99|Rear Bumpers | * | ||
Sheet1 |
After:
Excel Workbook | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | 434.99|579.99|Rear Bumpers | 460 | 460 | ||
2 | 434.99|579.99|Rear Bumpers | 460 | |||
3 | 434.99|579.99|Rear Bumpers | 460 | |||
4 | 434.99|599.99|Rear Bumpers | 500 | |||
5 | 434.99|599.99|Rear Bumpers | 500 | 500 | ||
6 | 434.99|599.99|Rear Bumpers | 500 | |||
Sheet1 |
Matt