C
Curtis
Is there a formula that would allow the name of a workbook or worksheet to
show in a cell inside a worksheet?
Thanks
show in a cell inside a worksheet?
Thanks
Jacob Skaria said:What about your previous post..??? Try the below formulas in a saved workbook
'Workbook and worksheet name
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1)),99)
'workbookname
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)
'worksheet name
=REPLACE(CELL("Filename",A1),1,FIND("]",CELL("filename",A1)),"")
If this post helps click Yes
---------------
Jacob Skaria
Curtis said:Is there a formula that would allow the name of a workbook or worksheet to
show in a cell inside a worksheet?
Thanks
Jacob Skaria said:What about your previous post..??? Try the below formulas in a saved workbook
'Workbook and worksheet name
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1)),99)
'workbookname
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)
'worksheet name
=REPLACE(CELL("Filename",A1),1,FIND("]",CELL("filename",A1)),"")
If this post helps click Yes
---------------
Jacob Skaria
Curtis said:Is there a formula that would allow the name of a workbook or worksheet to
show in a cell inside a worksheet?
Thanks