Hello,
I have an issue I can't seem to figure out
Question: How do I combine multiple VLookups in 3 datasets into into one formula. I will like to be able to select an option in a given drop down list, it will compare different worksheets and populate data relevant to what has been selected:
Individually the below formulas work and pull the relevant data from the relevant cell, but I need to be able to put them all in one cell (one formula).
Once Group_1 set of formula are run the relevant data in Group_2 is pulled into the right column.
Group_1
=IF(ISERROR(VLOOKUP(L10,StdardCTRLREF,11,FALSE)),"",VLOOKUP(L10,StdardCTRLREF,11,FALSE))
=IF(ISERROR(VLOOKUP(L10,LclCTRLREF,11,FALSE)),"",VLOOKUP(L10,LclCTRLREF,11,FALSE))
=IF(ISERROR(VLOOKUP(L10,Generic,11,FALSE)),"",VLOOKUP(L10,Generic,11,FALSE))
Group_2
=IF($M10="Key",VLOOKUP($L10,StdardCTRLREF,5,FALSE),0)
=IF($M10="Key",VLOOKUP($L10,LclCTRLREF,5,FALSE),0)
=IF($M10="Key",VLOOKUP($L10,Generic,5,FALSE),0)
Any suggestion to achieve this is most welcome.
Thank you
I have an issue I can't seem to figure out
Question: How do I combine multiple VLookups in 3 datasets into into one formula. I will like to be able to select an option in a given drop down list, it will compare different worksheets and populate data relevant to what has been selected:
Individually the below formulas work and pull the relevant data from the relevant cell, but I need to be able to put them all in one cell (one formula).
Once Group_1 set of formula are run the relevant data in Group_2 is pulled into the right column.
Group_1
=IF(ISERROR(VLOOKUP(L10,StdardCTRLREF,11,FALSE)),"",VLOOKUP(L10,StdardCTRLREF,11,FALSE))
=IF(ISERROR(VLOOKUP(L10,LclCTRLREF,11,FALSE)),"",VLOOKUP(L10,LclCTRLREF,11,FALSE))
=IF(ISERROR(VLOOKUP(L10,Generic,11,FALSE)),"",VLOOKUP(L10,Generic,11,FALSE))
Group_2
=IF($M10="Key",VLOOKUP($L10,StdardCTRLREF,5,FALSE),0)
=IF($M10="Key",VLOOKUP($L10,LclCTRLREF,5,FALSE),0)
=IF($M10="Key",VLOOKUP($L10,Generic,5,FALSE),0)
Any suggestion to achieve this is most welcome.
Thank you