Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to add selected filter value to the title of the report

Hi

I need to concatenate the selected filter value to the title of the chartreport .

How do i acheive this

Please Help...

2 Replies
fernandotoledo
Partner - Specialist
Partner - Specialist

in the label expression use:

= ' TITLE TEXT: ' & FIELD

if the field has more than one values selected you can use getfieldselections(FIELD) instead

kumarravi
Contributor III
Contributor III

Hi,
Try using :

=getfieldselection([Test value])

 

If you want to dynamically rename the title with year and all the filters selected use:

=getcurrentselection([Test value])

 

Thanks,

Happy Learning 🙂 !