简体   繁体   中英

Applying an Import Range function in Google Sheets without exceeding number of rows and columns

Pretty Self explanatory. In Google Sheets I need a workaround to this limitation. What I need in short is to feed a Sheets workbook every time the raw data gets updated in another file.

The problem is if I use an Import Range function, it will eventually exceed the number of rows or columns currently available an bring me an error, and since I need this to automatize a process, having to each time add more rows or columns manually defeats the purpose.

try:

=ARRAY_CONSTRAIN(IMPORTRANGE("id"; "sheet1!A:Z"); 50; 25)

where 50 can be ROWS(A:A)-ROW()+1 and 25 can be COLUMNS(1:1)-COLUMN()+1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM