Hi all:
My company is still using Excel 97 (yeah I know...) and I am having a problem with a vlookup data return. Here is what is going on. When the vlookup searches the data it is stopping on the first instance of the match and not continuing until the second search is hit:
Table For search term:
| A | B | C |
3|Customer |SYSQHA | |
4|11133 |code here| |
VLOOKUP Table: raw
| B | C | D | E | F |
2|Customer |Invoice |P/N | P/N Desc. |QTY |
3|11133 |2342342 | AA | Battery | 2 |
4|11133 |2342342 |SYSQHA| Mic Sys | 2 |
The vlookup finds row 3 and returns the "", but doesn't continue to row 4 as expected. Is there anyway to program it so it continues down the entire list of customers before it returns the ""?
Thank you for the help!
Mike
My company is still using Excel 97 (yeah I know...) and I am having a problem with a vlookup data return. Here is what is going on. When the vlookup searches the data it is stopping on the first instance of the match and not continuing until the second search is hit:
Table For search term:
| A | B | C |
3|Customer |SYSQHA | |
4|11133 |code here| |
VLOOKUP Table: raw
| B | C | D | E | F |
2|Customer |Invoice |P/N | P/N Desc. |QTY |
3|11133 |2342342 | AA | Battery | 2 |
4|11133 |2342342 |SYSQHA| Mic Sys | 2 |
Code:
=IF(VLOOKUP($A3,raw!$B:$F,3,TRUE)=$C$2,VLOOKUP($A3,raw!$B:$F,5,TRUE),"")
The vlookup finds row 3 and returns the "", but doesn't continue to row 4 as expected. Is there anyway to program it so it continues down the entire list of customers before it returns the ""?
Thank you for the help!
Mike