Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Friends,
How to display dynamically the pie chart title as like when I select a customer name it has to show in the pie chart title.
The customer name should be dynamic.
eg:
Year "The customer name" Chart.
Regards
Chriss
HI,
Try this
= If(GetSelectedCount(yourDimension) > 0, 'Year' & GetFieldSelections(yourDimension) & 'Chart', 'Default name')
If you select multiple values it shows all the values separated by comma.
Hope this helps you.
Regards,
Jagan.
='Revenue & Cost Per Employee Calculation - using ' &YTMMonth
YTMmonth is a column name of my table and I am using it as a list box.
it changes and displays the selected month from the list box.
for u suppose vCustomer is your column name for customers then do this
='Year' &vCustomer& 'Chart'
I hope it helps
Cheers,
Gaurav
HI,
Try this
= If(GetSelectedCount(yourDimension) > 0, 'Year' & GetFieldSelections(yourDimension) & 'Chart', 'Default name')
If you select multiple values it shows all the values separated by comma.
Hope this helps you.
Regards,
Jagan.
Thanks Gaurav and Jagan... its works....
Regards
Chriss