Hi,
I am using the following vba save code;
Cell C104 = "BUY"
Cell C102 = "lots"
However the name says "BUY BUY" instead of "BUY lots"
Any help would be appreciated.
Thanks,
Lewis.
I am using the following vba save code;
Code:
ActiveWorkbook.SaveAs Filename:= _
"G:\Baskets\" & Format(Now, "yyyy-mm-dd ") _
& Range("C104").Value & " " & Range("C102").Value & " Basket1.xlsm" _
, FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
Cell C104 = "BUY"
Cell C102 = "lots"
However the name says "BUY BUY" instead of "BUY lots"
Any help would be appreciated.
Thanks,
Lewis.