Home > Software design >  Google Sheet cross sheet data
Google Sheet cross sheet data

Time:01-07

=IFERROR(INDEX(L:L,MATCH(R3,N:N,0),1),"no match")

So this formula is working, I just need it pull data from a different spreadsheet. Specifically the "L:L" and "N:N" part.

I tried using IMPORTRANGE but I am not having any luck.

CodePudding user response:

You tried IMPORTRANGE and not working cause you missed in some of parameter of that.

I'm using IMPORTRANGE before few months and it's working fine.

=IMPORTRANGE("https://docs.google.com/spreadsheets/d/XXXXXXXXXXXXXXXXXX_D4s78gEyWSDB0CWKnw","XXXX XXXX!D2")
  • first parameter is sheet url
  • in second parameter have sheet name and cell id. ex:, 'XXXX XXXX!D2' in this 'XXXX XXXX' is sheet name and 'D2' is cell id

CodePudding user response:

Ah I just figured it out. I was just putting the IMPORTRANGE in the wrong place. Thanks for the response.

  •  Tags:  
  • Related