Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Can I show my selections in my chart title

I have used expressions before for my chart titles which include a specific user selection alongside my text e.g. -

='The number and proportion of entrants to STEM courses,
' &
institution &', ' & year

I would like to show other user selections in the chart title too.  What is the best way to do this?

Thanks

Greg

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

in this case I would use getfieldselections (at least the most important ones)

='text blabla ' & getfieldselections(A) & '-' getfieldselections(B) & '-' getfieldselections(C)

View solution in original post

9 Replies
Anonymous
Not applicable
Author

you can use

GetFieldSelections(yourselectionfield)

e.g. ='seleciton A: ' & GetFieldSelections(A)

that what you want?

Anonymous
Not applicable
Author

I don't think so.  I just want to list in the title of the chart all the selections a user has made.

Thanks

Greg

arulsettu
Master III
Master III

try this

GetCurrentSelections()

Anonymous
Not applicable
Author

look at: getcurrentselections()

depending of number of selections, I would not show it in title

but maybe ist what you are looking for?

Chanty4u
MVP
MVP

I THINK  GetCurrentSelections will work

GET.PNG

avinashelite

"I just want to list in the title of the chart all the selections a user has made" you mean all the fields selected ??

if so try with the Getcurrentselection()

Anonymous
Not applicable
Author

Thanks  But this also shows the name of the field as well as the selection.  Is there a way just to show the selection.

Greg

Anonymous
Not applicable
Author

in this case I would use getfieldselections (at least the most important ones)

='text blabla ' & getfieldselections(A) & '-' getfieldselections(B) & '-' getfieldselections(C)

avinashelite

I don't think we have function like that , you need to make use of multiple getfieldselection() function to achieve this but having the field name with the selection is more informative rite ?? because if 2 fields have similar values then without the field name , end user might get confused in which field he has made the selection