writing to text file
Maybe the Replace function can help you.
Replace(thisworkbook.Name, ".xls", ".log", 1, -1, vbTextCompare)
--
Hope that helps.
Vergel Adriano
"ADK" wrote:
ThisWorkbook.Name returns the name of the file name....but with .xls
Is there a way to only return the file name with the extension?
UserName = Environ("USERNAME")
CpuName = Environ("COMPUTERNAME")
WhatOffice = Environ("USERDOMAIN")
MyFullName = ThisWorkbook.FullName
Contents:=True, UserInterfaceOnly:=True
Open "W:\PL10\PDSRlogs" & "\usage-" & ThisWorkbook.Name & ".log" For
Append As #1
Print #1, UserName, WhatOffice, CpuName, Now, MyFullName
'Print #1, Application.UserName, Now
Close #1
|