String question

Hi,

When using this string it shows the quotes at the beginning and the end. However, when i remove the first and last quotes then it doesn’t show the correct path and just lists “+ReportFilePath”. Please assist. Thanks.

“”“” + ReportFilePath + “”“”

Hello Al,

As far as I’m aware, you don’t need the quotes for a Save As File Name field. You sure you can’t just use ReportFilePath there?

Usually while mentioning filepath we won’t be mentioning it along with double quotes on either side the file path
And if we want double quotes also to be mentioned along with our string then those double quotes must be must surrounded with two double quotes like this
“””ReportFilePath”””
And in our case if that variable ReportFilePathhas the file path then we can simply mention as like this
ReportFilePath.ToString

Cheers @aflores