Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

Need Help?

Hi Community,

I have a Bar chart, Grouping dimension.

when i am click cycle/Drill group i want change caption.

if i am click Div---->  Division wise cost

Grade--> Grade wise cost

Status----> Status wise cost..

PFA,

1 Solution

Accepted Solutions
Not applicable

Hi Paul,

as the guys have said get current field is your friend here, if you want to avoid nested if statements, the attached should work for you

hope that helps

Joe

View solution in original post

5 Replies
chrismarlow
Specialist II
Specialist II

Start with;

getcurrentfield( [New Group] )

Then add some logic (a couple of If statements?) to get the display exactly how you want. 

Not applicable

Hi

Paul, you need this windows title expression:

=if(getcurrentfield([New Group])='Div','Division wise cost',

  if(getcurrentfield([New Group])='Grade','Grade wise cost',

  if(getcurrentfield([New Group])='Status','Status wise cost')

  )

)

stigchel
Partner - Master
Partner - Master

See attached using GetCurrentField()

Not applicable

Hi Paul,

as the guys have said get current field is your friend here, if you want to avoid nested if statements, the attached should work for you

hope that helps

Joe

paulwalker
Creator III
Creator III
Author

Nice work Simmons....