when inserting a file name in a cell how do you remove file type

  • Thread starter mikecarpenter21
  • Start date
M

mikecarpenter21

this is the formula I am using, but I would like for the file type "xls" on
the end not to be there


=MID(CELL("filename"),SEARCH("[",CELL("filename"))+1,
SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)
 
E

Elkar

You could just subtract 5 from the end of your formula instead of 1.

=MID(CELL("filename"),SEARCH("[",CELL("filename"))+1,
SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-5)

HTH,
Elkar
 
Top