help keeping the worksheet names within formula

L

lamaloh

I am working with 'weekly' worksheet tabs and want to keep the name o
the tab
for example July1-8 within the formula for each box. Any suggestions
 
B

Bob Phillips

=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CELL("fi
lename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

will get the sheet tab name
 
Top