NEED HELP!!
VBA - EXCEL -NEED HELP Renaming file in same path + text addition
Hello and thank you for reading/responding. I am using the current code to save as CSV to XLSX.
BUT- this is renaming the file with the TEMP<CURRENTFILENAME>... AND placing on my desktop.
VBA - EXCEL -NEED HELP Renaming file in same path + text addition
Hello and thank you for reading/responding. I am using the current code to save as CSV to XLSX.
BUT- this is renaming the file with the TEMP<CURRENTFILENAME>... AND placing on my desktop.
With Activeworkbook
.SaveAs Filename:= .Path & Left$(.Name, InstrRev(.Name,".")) & "xlsx", FileFormat:=xlOpenXMLWorkbook
End With
Ideally - I would like this code to rename file (filename + "CLEANED")<CURRENTFILENAME+"CLEANED"> THEN save in same directory... Please help... been Googling for a couple days now....SaveAs Filename:= .Path & Left$(.Name, InstrRev(.Name,".")) & "xlsx", FileFormat:=xlOpenXMLWorkbook
End With