Hi everyone,
I'm working on a PDF template for a Grid Report and I need to display the selected runtime filter value in the PDF header.
My Setup:
What I've Tried:
I've attempted to access the team name using various placeholders in my PDF template:
handlebars<h2>{{name}}</h2>
<h5>{{teams.name}}</h5>
I also tried:
None of these seem to work.
I'm working on a PDF template for a Grid Report and I need to display the selected runtime filter value in the PDF header.
My Setup:
- Report Type: Grid
- Runtime Filters: I have a "Team" filter that users can select when running the report
- PDF Template: I want to display the selected team name in the header
What I've Tried:
I've attempted to access the team name using various placeholders in my PDF template:
handlebars<h2>{{name}}</h2>
<h5>{{teams.name}}</h5>
I also tried:
- {{runtimeFilters.teams}}
- {{filters.teams}}
- {{teamName}}
- {{filterData.teams}}
None of these seem to work.

Comment