Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
santhosh_k_n
Creator II
Creator II

How to convert current selection values to text

Hi all,

Please guide me how present current selection object or values to be presented in a text line

5 Replies
Not applicable

"presented in text line" What do you mean by that.

You can try using GetCurrentSelections() or GetFieldSelections(FieldName) functions

Thanks,

Angad

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Just use

=GetCurrentSelections()

in a text box.

HTH
Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sunilkumarqv
Specialist II
Specialist II

Create one Text Object past below script use your Field Name there and try to select that Field Name or even past these into your Text Window title else where

=Text name ' & If(GetSelectedCount(Field Name)>0, GetFieldSelections(Field Name))

er_mohit
Master II
Master II

Try this in text object

=subfield(getcurrentselection(),';',-1)

when you select any value in field it display in text object

jsingh71
Partner - Specialist
Partner - Specialist

If you want to show current selection then go to properties of Text object and type =GetCurrentSelections() and if you want to show specific Dimension then mention that like =GetCurrentSelection(Month).