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

Dynamic title with drill down

Hi ,

I have the following fields in my drill down list:

- 15-21 days

- 22-28 days

- > 28 days

If the user selected 2 fields (eg: 22-28 days and > 28 days ), can I define the title to be '> 22 days' instead of '22-28 days ,> 28 days' ?

1 Reply
manas_bn
Creator
Creator

Something like this in the chart title may be?

='Showing Measures for  '&

if(len(GetFieldSelections(FieldName))>0,

if(GetFieldSelections(FieldName)='22-28 days, > 28 days','> 28 days',GetFieldSelections(FieldName)),

'All Days')