I have a workbook that has item numbers for about 100 different products. I created a formula that will pull in data, located on 5 other workbooks, such as item description and serial number. My formula is formatted for each individual criteria.. My question is how can I make the formula search across all workbooks, instead of just one particular workbook? Is there a way to write one formula to drag across all cells, instead of customizing it for each criteria?
Formula to get Item Description:
=IFERROR(INDEX(All78C.csv!$D:$D,MATCH(A2,All78C.csv!$E:$E,0)),"""")
A2 = Item number
$D:$D = Item description located on All78C.csv
$E:$E = Item number located on All78C.csv
Formula to get Serial Number:
=IFERROR(INDEX(All78C.csv!$F:$F,MATCH(A2,All78C.csv!$E:$E,0)),"""")
A2 = Item number
$F:$F = Item description located on All78C.csv
$E:$E = Item number located on All78C.csv
Workbooks needed to search through:
ALL78C.CSV
ALL78D.CSV
ALL78M.CSV
ALL78P.CSV
ALL780.CSV
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]Item Number[/TD]
[TD="align: center"]Item Description[/TD]
[TD="align: center"]Serial Number[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD]10001[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD]10002[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD]10003[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD]10004[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Formula to get Item Description:
=IFERROR(INDEX(All78C.csv!$D:$D,MATCH(A2,All78C.csv!$E:$E,0)),"""")
A2 = Item number
$D:$D = Item description located on All78C.csv
$E:$E = Item number located on All78C.csv
Formula to get Serial Number:
=IFERROR(INDEX(All78C.csv!$F:$F,MATCH(A2,All78C.csv!$E:$E,0)),"""")
A2 = Item number
$F:$F = Item description located on All78C.csv
$E:$E = Item number located on All78C.csv
Workbooks needed to search through:
ALL78C.CSV
ALL78D.CSV
ALL78M.CSV
ALL78P.CSV
ALL780.CSV
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]Item Number[/TD]
[TD="align: center"]Item Description[/TD]
[TD="align: center"]Serial Number[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD]10001[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD]10002[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD]10003[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD]10004[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]