Home > Enterprise >  google sheets- How to query multiple columns from a different sheet without having it combine the fi
google sheets- How to query multiple columns from a different sheet without having it combine the fi

Time:12-03

I have a query that pulls specific ranges of columns from a different sheet. It is combining the top two rows. Any way to string together multiple ranges of columns from a different sheet and not combine the top row? thanks

example Query ( {'mainview'!, A1:L36, 'mainview'!n1:N36}) this does not work

First column not combined with second.

CodePudding user response:

If you are just trying to combine two ranges:

={mainview!A1:L36,mainview!N1:N36}

CodePudding user response:

try:

={mainview!A1:L36; mainview!N3:N36}
  • Related