I'm using charts in Google Spreadsheet to plot the last 90 days of data. However, when adding new data it's outside the charts currently selected range of A1:A90. Is there a function I can use to select the last 90 rows of data in a column of a Google Spreadsheet?
Put the cursor into a cell that should contain a Google Sheets checkmark and press Alt+I,X (first press Alt+I, then release only the I key, and press X while holding Alt).
There's no LAST() function. However, there is a solution; the INDEX function. In Google Sheets, the formula INDEX() allows you to return the value of a cell by specifying which row and column to look at in the specified array. =INDEX(A:A,1,1) for example will always return the first cell in column A.
You can create a new sheet and use the QUERY
function to get the last 90 rows:
=SORT(QUERY(Sheet1!A:Z,"order by A desc limit 90"),1,1)
=QUERY(Sheet1!A:Z,"limit 90 offset "&(COUNT(Sheet1!A:A)-90))
You can then use this sheet to generate your chart.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With