I created a sheet which my staff update in a month. This sheet collects data on store performance. There are instances were this sheet will contain 2 rows for a store visited in a particular month because of the store visited twice.
How do i lookup the last updated row and vlookup a particular cell?
You could read the last value with the combination of LOOKUP and MAXROW expressions. Something like…
LOOKUP(MAXROW(“TableName”,“_Rownumber”),“TableName”,“KeyColumnName”,“ColumnName”)
So i have a sheet that is called “call report” and this sheet collects the data. and in this sheet i can get data on a particular store more than once.
I then have another sheet that looks up the last occurrence and brings in the value of a specific column.
To be sure first try to use… LOOKUP(MAXROW(“Call Report”,“_Rownumber”),“Call Report”,“Store”,“Current Month Actual”). Then… Is the “Store” column a key column?