I have a report scheduled to run every Monday and output in PDF to a specific folder on the network. The file needs to be named dynamically, depending on the value found in one field of the report (created by a sub-report).
So, for example, if the report were to look like this:
Company: ABC Corp. Invoice #: 123
Then the exported file should be named: ABC_Corp_Inovice_123.pdf
And the next time it runs:
Company: ABC Corp. Invoice #: 456
Then the exported file should be named: ABC_Corp_Inovice_456.pdf
Is there any way to pass this value to the output file name?
Thanks!