Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi There
I have a bar graph with several expressions and grouped Dimensions in a Cyclic format
My issue is that I need the title of the chart to change to the correct Dimension when clicking on the Cyclic
how can I achieve this?
Regards,
Please try =GetCurrentField([your cyclic group]).
Please try =GetCurrentField([your cyclic group]).
HI
= Chart Tile & GetCurrentField(Your Cyclic Group name) without any single or double quotes
Thanks and regards
Padma
Hi Rido
Please try to type in label field.
='xxxxx ' &GetCurrentField(Group_Name)
Hope it works.
Thanks much appreciated
Yeah it is working properly. But i need to display label of that field. How to get that??
Thanks in advance..
I think that's not possible. Maybe you can use an IF-statement? Something like this:
=IF(GetCurrentField([Your Group]) = 'cust_name', 'Customer Name',
IF(GetCurrentField([Your Group]) = 'vend_name', 'Vendor Name'
))
It is working fine, Thank you for your help.