IMPORTRANGE to import multiple Google Sheets into one vertical column?

前端 未结 2 1737
囚心锁ツ
囚心锁ツ 2021-01-26 10:17

I am having a bit of an issue using IMPORTRANGE in Google Sheets to import multiple sheets into a single column on a master sheet and whenever one of the sheets is updated, it a

2条回答
  •  不要未来只要你来
    2021-01-26 11:02

    I'd suggest QUERY (that does not require authorisation). For example for a single row (Row2) from each of three sheets (1, 2 and 3), with the headers from '1'!A1:C1 :

    =query({'1'!A1:C2;'2'!A2:C2;'3'!A2:C2})
    

    The ; is for vertical stacking where the locale's general separator is ,.

提交回复
热议问题