-----Original Message-----
Hi Carla
this is not an add-in function. I guess you have used something like
=CELL("filename",A1)
if yes could you please post your complete formula which does not
work (copy it as-it-is from your workbook and post it here).
If you only want a part of this result (path+filename+sheetname)
displayed you may use the following formulas:
File path and file name:
=CELL("filename",A1)
File path only
=LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)- 1)
File name only
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)
+1,FIND("]",CEL
L("filename",A1),1)-FIND("[",CELL("filename",A1),1)-1)
The sheet name
=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND
("]",CELL("file name",A1),1))
--
Regards
Frank Kabel
Frankfurt, Germany
I am trying to use specifically the "filename" function.
It shows you the path of the entire filename including the
sheet name.
I have achieved the end result by having the filename
printing on my worksheet, but had to use custom footer
instead. I can live with this, but want to know why the
add in function of "filename" doesn't work properly.
Carla
-----Original Message-----
Hi Carla
you may provide some more information: what add-in are you using,
what does not work, etc
--
Regards
Frank Kabel
Frankfurt, Germany
Carla wrote:
I use this at home, works fine. Tried it at work, no
luck. Checked the appropriate add in box and installed
from CD, but still won't work. Unchecked and rechecked
box, rebooted and a few other things, but won't work.
Can anyone help?
Thanks,
Carla
.
.