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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
louise119
Creator III
Creator III

Table line selection

Hi, I'd like to use table chart.
How do I extract a specific row of data? Any examples would be helpful.

Labels (5)
13 Replies
louise119
Creator III
Creator III
Author

I could make it. Thank you so much!

louise119
Creator III
Creator III
Author

Sorry, one more question.
If I choose 2 or 3 row numbers, the data from that rows will display on the text object?
I tried , but nothing display on the text object.

rubenmarin

The condition If(GetSelectedCount(RowNoFieldName)=1,  makes it only work when there is only one value selected.

You can change it to something like:

If(GetPossibleCount(RowNoFieldName)<=10, Concat(Aggr([YourExpressionToShowData], RowNoFieldName), ' '))

GetPossibleCount to limit the number of rows selected to 10.

Concat to magre the different strings in one

Aggr to do the expression for each row selcted

louise119
Creator III
Creator III
Author

Thank you so much!! I could make it.
I appreciate for your kindness.