Hi,
I have a collection which has nested tables and I am trying to access both Root Level Collection and Nested collection to display them on the Gallery. So, I made the datasource as root collection and trying to access nested collection but I am unable to do it.
Is there a way we can access nested collection and display the values in the Gallery.
Here is my main Collection -
And I am trying to access ClientQuestionnaires nested collection.
I am trying to access account_lead value from nested collection, but receiving the below error -
Can someone please guide me in the right direction?
Thanks,
Solved! Go to Solution.
As clientQuestionnaires is a nested table that can contain multiple rows with multiple account_leads, a simple way to display the account leads in the gallery would be to add a label, and to concatenate the values by setting the text property to the following:
Concat(ThisItem.clientQuestionnaires, account_lead & " " )
As clientQuestionnaires is a nested table that can contain multiple rows with multiple account_leads, a simple way to display the account leads in the gallery would be to add a label, and to concatenate the values by setting the text property to the following:
Concat(ThisItem.clientQuestionnaires, account_lead & " " )
Thanks for the response, it worked. How can I access if the nested table has multiple rows and columns ? Like something below -
Here CollectionVersions is the root collection and ChangeValuesCQ is the nested collection. I wanted to show these on the gallery.
One way will be creating separate collection for ChangeValuesCQ and display on the gallery. Would like to know if there is any other way.
Thanks,
If you want to display the output in a gallery control, the easiest way would be to add a child gallery control inside your main gallery control.
You would set the items property of your child gallery control to ThisItem.changeValuesCQ
User | Count |
---|---|
160 | |
91 | |
68 | |
64 | |
63 |
User | Count |
---|---|
210 | |
157 | |
93 | |
81 | |
71 |