Forum Discussion
ana ayesh
Jan 12, 2018Copper Contributor
function to merge multiple tab
Hi guys,
I need a little help on excel functions. I have a worksheet with multiple tabs. on each tab it consists of a unique id with all the information for that unique ID. say for example, M...
- Jan 16, 2018I see. You want to merge all fields in tab2 to tab1, and F column in tab1 is used to match H column in tab2.
Since there are columns in front of H column in tab2, VLOOKUP formula does not fit your need.
Please try INDEX formula and MATCH formula.
ana ayesh
Jan 15, 2018Copper Contributor
it sin column H.
Willy Lau
Jan 16, 2018Iron Contributor
I see. You want to merge all fields in tab2 to tab1, and F column in tab1 is used to match H column in tab2.
Since there are columns in front of H column in tab2, VLOOKUP formula does not fit your need.
Please try INDEX formula and MATCH formula.
Since there are columns in front of H column in tab2, VLOOKUP formula does not fit your need.
Please try INDEX formula and MATCH formula.
- ana ayeshJan 16, 2018Copper Contributor
issue solved. Thanks alot for the command to execute it.
It is =IF(B4="",L3,B4) on tab 1 new column
=INDEX('Supplier''s input'!$A$4:$XX$65535, MATCH($F5,'Supplier''s input'!$H$4:$H$65535, 0), 10) XX should be the last column in tab2.