I am a beginner and I am trying to pull all the tables in my dataverse and list them in a drop down list.
user would select the table he wants to view from the drop down list and once selected that table contents should alone be displayed , passed to collect for further processing.
Tried to pull all the tables in my dataverse and display their names in a dropdown list in power apps.
Filter(entitites(StartsWith(‘original localized name’, “manual”))
This worked fine .
Now I need to read the selected value and display the contents of the selected table name from the list .
when I try that the collection displays only table name and not its collect.
For the OnChange property of the dropdown, use `ClearCollect(SelectedTableData, LookUp(Entities(), 'Original Localized Name' = Dropdown1.Selected.'Original Localized Name').Name);` to collect the selected table's data. Then, set a gallery's Items property to `SelectedTableData` to display the contents.
Ensure the table name is correctly referenced, as the issue arises from collecting only the table name instead of its data.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.