Forum Discussion
love_excel1948
Oct 14, 2019Copper Contributor
Excel formula to get sheet name from a cell
I am trying to use a formula to reference a worksheet by getting the sheet name from a cell as shown below =IF(A34="","",MAX(Client10!C$3:C$33)) I have about 50 sheets and want to sect the sheet de...
Twifoo
Oct 14, 2019Silver Contributor
Try this:
=IF(A34=“”,””,
MAX(INDIRECT(“Client”&A34&
“!C3:C33”)))
=IF(A34=“”,””,
MAX(INDIRECT(“Client”&A34&
“!C3:C33”)))
- love_excel1948Oct 14, 2019Copper ContributorMany thanks for this. It has worked a treat.
- TwifooOct 15, 2019Silver ContributorYou’re welcome.