Hi Does anyone know if there is a way to pick up the sheet name in a cell? Thanks Shona
S SS Sep 17, 2004 #1 Hi Does anyone know if there is a way to pick up the sheet name in a cell? Thanks Shona
J Jack Schitt Sep 17, 2004 #2 =MID(CELL("filename",A1),1+FIND("]",CELL("filename",A1)),255) Workbook needs to be saved before the above will work. You may wish to substitute the cellreference of the calling formula instead of A1, if there is a risk of Row 1 or Column A being deleted at some later date.
=MID(CELL("filename",A1),1+FIND("]",CELL("filename",A1)),255) Workbook needs to be saved before the above will work. You may wish to substitute the cellreference of the calling formula instead of A1, if there is a risk of Row 1 or Column A being deleted at some later date.
A Andy Brown Sep 17, 2004 #3 Does anyone know if there is a way to pick up the sheet name in a cell? =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255) File must be saved before this will work. Rgds, Andy
Does anyone know if there is a way to pick up the sheet name in a cell? =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255) File must be saved before this will work. Rgds, Andy
S SS Sep 17, 2004 #4 Thanks that is great Jack Schitt said: =MID(CELL("filename",A1),1+FIND("]",CELL("filename",A1)),255) Click to expand...
Thanks that is great Jack Schitt said: =MID(CELL("filename",A1),1+FIND("]",CELL("filename",A1)),255) Click to expand...