View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default Remove .xls from selected files

Zurn,

Replace

insertbook.Name

with

Replace(insertbook.Name,".xls,"")

HTH,
Bernie
MS Excel MVP

"Zurn" wrote in message
...

With the code below I get a range of cells from different files and put
it in a new file named globalbook

FName = Application.GetOpenFilename(filefilter:="Excel Files (*.xls),
*.xls", _
MultiSelect:=True)
..
For... ...
..
globalbook.Worksheets("X").Cells(r, 1).Value = insertbook.Name
r+1
..


The last line writes the name of each file on sheet X

My problem is that I don't need the *.xls * to be written on sheet
X...*how can I easily trim the .xls from the filename?*


--
Zurn
------------------------------------------------------------------------
Zurn's Profile:

http://www.excelforum.com/member.php...o&userid=14645
View this thread: http://www.excelforum.com/showthread...hreadid=263149