Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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' ?
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')