Google-sheets – How to display the first 40 rows from one sheet into another sheet

google sheets

Simple Question

How do I display the content of the first 40 rows from one sheet into another sheet?

Best Answer

There are various ways to do that.

=QUERY('Sheet1'!A1:Z40)

OR

=ARRAYFORMULA('Sheet1'!A1:Z40)

OR

=INDEX('Sheet1'!A1:Z40)

OR

=IMPORTRANGE("xxxxxxxx","'Sheet1'!A1:Z40")

(IMPORTRANGE can also be used to import data to a different spreadsheet where xxxxxxxx is the ID of the source spreadsheet)

Functions used: