Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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 !!
You can try expression like:
=Concat( Distinct [Visit Id], ',') // Will give you all Ids separated by commas
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.
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 )