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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
tushar_p
Contributor
Contributor

Table Chart: Get individual records for a table row

Hello All,

Please excuse if the query is trivial. As shown in the image below, we have a used a Table Chart based on employee field visits data.

IMG_20200515_133149.jpg

For further actions to be triggered from the chart, we would like to access the individual records data from the table chart. Appreciate any help in this regards.

Thanks in advance !!

3 Replies
tresesco
MVP
MVP

You can try expression like:

=Concat( Distinct [Visit Id], ',')                          // Will give you all Ids separated by commas

tushar_p
Contributor
Contributor
Author

Thanks @tresesco !

I would like to use these in a new column of table chart say "Ref. Visit Ids". But after I use your approach uner a new dimension in the expressions editor and apply it, I get a "Invalid dimension" error in the Table chart. Am I missing something here.

For clarity, I have updated the image in the my query post to reflect the need.

tresesco
MVP
MVP

Why dimension and not expression?

If you have a good enough reason for using this as dimension try like:

Aggr(Concat( Distinct [Visit Id], ',')  , ','), Employee )