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

how to change the names as per the dimension appearing in the drill down group

Hi

I have a drill down group created with Service line --> Sub Services--> Application

I have a list box with this drill down group shown. I need to change the label of the list box based on the drill down level. the name should dynamically change as per the drill down level

Is there a way to do this QV?

1 Solution

Accepted Solutions
adamdavi3s
Master
Master

You might need to wrap that in a pick(match( then to achieve what you want I am afraid

e.g. pick(match(getcurrentfield([group]),'=aggr(Application,Application)','=aggr(field2,field2)'),'Application','Field2')

View solution in original post

4 Replies
adamdavi3s
Master
Master

Use the following in the title (Sorry edited with correct formula)

=getcurrentfield([group])

Anonymous
Not applicable
Author

When i use the above formula.. I am getting the pasted formula in the drill down. I had given labels to these formula while defining them in the drill down group but the labels are not appearing instead the formula directly appears

adamdavi3s
Master
Master

You might need to wrap that in a pick(match( then to achieve what you want I am afraid

e.g. pick(match(getcurrentfield([group]),'=aggr(Application,Application)','=aggr(field2,field2)'),'Application','Field2')

Anonymous
Not applicable
Author

Thanks..it worked and solved the problems