In an Excel worksheet I have a VLookup. On the VLookup it references data on another sheet. For example,
VLOOKUP($B$3,'Inventory Sep'!$A$2:$C$255,3,FALSE)
Monthly I need to change the Inventory sheet to update it for example to Inventory Oct or Inventory Nov.
Rather than asking the user to update the VLOOKUP by editting the inventory sheet I would like to make the VLOOKUP reference a certain cell for example:
VLOOKUP($B$3,'Maintenance!A1'!$A$2:$C$255,3,FALSE)
Then the user would just have to go to the maintenance tab and update the A1 cell changing it from Inventory Sep
to Inventory Oct
Is it possible to reference a cell that refers to a sheet in excel and how would I do it?