Hi there,
I have a piece of code that converts a document into a pdf. I'm trying to save the report as "2017 Annual Report for [XYZ]"
Right now, when I run the code, it saves the file as whatever is stored in the SaveAsString, which is Person's name.
I want to add "2016 Annual Report" in front of this. How should I do that? Can I concatenate the "2017 Annual..." with the "SaveAsString" If so, how do I do that? Thanks!
I have a piece of code that converts a document into a pdf. I'm trying to save the report as "2017 Annual Report for [XYZ]"
Right now, when I run the code, it saves the file as whatever is stored in the SaveAsString, which is Person's name.
Code:
Filename:=SaveAsString & ".pdf", _
I want to add "2016 Annual Report" in front of this. How should I do that? Can I concatenate the "2017 Annual..." with the "SaveAsString" If so, how do I do that? Thanks!