Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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,
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
Start with;
getcurrentfield( [New Group] )
Then add some logic (a couple of If statements?) to get the display exactly how you want.
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')
)
)
See attached using GetCurrentField()
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
Nice work Simmons....