I have a Google Spreadsheet with two separate sheets. The first one is just a big list of names and data, and the second is supposed to be a sorted listing of all the data on the first sheet (sorted by, say, last name). Here is the current way I am defining the second sheet:
=sort(sheet1!A:L, 2, TRUE)
Which works fine for the most part, except for one issue: in sheet1, the first row is a header row that consist of "First Name", "Last Name", "Phone", etc. When I use that formula for sheet2, that row gets sorted in with the rest of them.
How can I change the assignment so that the sorting ignores the first row of sheet1, and sorts the columns A to L with the same behavior? Manually specifying the length is unfeasible as entries may be rapidly added and removed in the future.