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}