General
This type of placeholder can be used to access the value of a Report parameter.
Syntax
The syntax for this type of placeholder is:
Report Parameter Placeholder Syntax
[ReportParameter].[<name_of_parameter>]
Example
Let's suppose there is a Report parameter named FileName which has a value of Sales Report (a String); the following expression uses that parameter:
Expression with Report Parameter Placeholder
"C:\Reports\" & [ReportParameter].[FileName]
This expression will return C:\Reports\Sales Report.