Home > OS >  Pulling data from one spreadsheets to another (IMPORTRANGE)
Pulling data from one spreadsheets to another (IMPORTRANGE)

Time:12-02

Trying to pull data from one spreadsheet to another:

When using this formula =VLOOKUP(A2,IMPORTRANGE(“https://docs.google.com/spreadsheets/d/1H0g2FwZZbD6L33KOhuXakuRbWDsIWDNGburMZ3Tf4T4/edit#gid=0”,“Internal!$A$2:$E$1000”),3)

getting an error. Will really appreciate your help

CodePudding user response:

The problem is the quotes. Instead of “ ”, you should be using "".

Use the next formula

=VLOOKUP(A2,IMPORTRANGE("https://docs.google.com/spreadsheets/d/1H0g2FwZZbD6L33KOhuXakuRbWDsIWDNGburMZ3Tf4T4/edit#gid=0","Internal!$A$2:$E$1000"),3)

Or even shorter (You only need the ID)

=VLOOKUP(A2,IMPORTRANGE("1H0g2FwZZbD6L33KOhuXakuRbWDsIWDNGburMZ3Tf4T4","Internal!$A$2:$E$1000"),3)

Check columns J-K

  • Related