Oct 21 2021 02:51 PM
I want to select and copy the last say 20 numbers in a column of data, which can have more numbers added to it, onto another sheet with a line graph in it. So I want the last/most recent numbers at the bottom of the column. I think that I need to use the INDEX function but I'm not clear about the correct syntax. I'm using OFFICE365, on a laptop but friends may be using older versions.
Oct 21 2021 03:00 PM
SolutionLet's say the data are on Sheet1 in A2:An, with a header in Sheet1!A1.
On the other sheet, enter the same header in A1.
In A2, enter the formula
=INDEX(Sheet1!A:A,COUNTA(Sheet1!A:A)-21+ROW())
Fill down to A21.
Oct 21 2021 03:19 PM
Oct 22 2021 12:35 AM - edited Oct 22 2021 12:35 AM
Use
=INDEX('[QC Report - Update 20102021.xlsx]All data'!U:U,COUNTA('[QC Report - Update 20102021.xlsx]All data'!U:U)-21+ROW())
Oct 22 2021 01:05 AM