I am new to PowerApps and have successfully built a survey using cascading dropdowns. However, I would like the top level of my dropdowns to be a specific named table in a prior dropdown. My Excel data source has multiple tabs with each containing a named table representing a system. So imagine:
TAB1 - Contains list of systems, including a column with the name of the TAB which contains that system table
TAB2 = System Table A
TAB3 = System Table B
TAB4 = System Table C....etc
I want to have a dropdown that, based on a prior dropdwon pulling from TAB1, selects the named TAB from TAB1. It seems like I can use something like:
Filter((DROPDOWN.SELECTED.SYSID),QuestionId=("2.1")
But this results in a correct text value instead of the expected Table name. What am I missing?