I am using an INDIRECT function to get value of a cell (B4) for many sheets in my workbook. At the moment I have to hard code the name of the sheets like this
=INDIRECT("WCNEXP!$B$4")
Ideally I would like to find a way to compile the name "WCNEXP" with the help of the CONCATENATE formula, like this
=INDIRECT("CONCATENATE(B18,C18)!$B$4")
but it does not work for some reason.
Is there another way to get the name compiled from 2 cells and use the INDIRECT Formula ?
=INDIRECT(CONCATENATE(B18,C18, "!$B$4"))? i.e. not the TEXT "Concatenate" (since you put it inside the double quotes). - FXDCONCATENATEall together:=INDIRECT(B18&C18&"!$B$4")- Prebsus