Example cell A1.value= "StreetName & OtherStreetName" (as text)
Save file as A1.value
The cell may or may not have the "&" in the cell. Most of the time it does not and my code works fine, but when it is in the cell it reads the "&" as part of the VBA code and not as a text item in a string like I need it to.
Dim UName As String
UName = Environ("username")
ActiveWorkbook.SaveAs FileName:="C:\Users\" & UName & "\Desktop\" & range.("A1").value & ".xlsm", _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
cell A1 = "StreetName & OtherStreetName"