Hello
How do I reference a data table based upon a previous drop down?
I have one table which is the master set of data ie Choice 1, Choice 2, Choice 3, when I select one of them, I want it to be able to look up the next table and only give the options for that table.
Each one is it's own table.
Choices | Choice 1 | Choice 2 | Choice 3 |
Choice 1 | Apple | Apple | Banana |
Choice 2 | Banana | Orange | Orange |
Choice 3 | Kumquat | Watermelon | Kumquat |
Watermelon |
Thanks
Solved! Go to Solution.
Doing that gave the same error as before.
However, there is more than 2 tables to choose from and it doesn't allow nested ifs. I need to be able to choose from 4+ tables
Hi @SunnyJess ,
This makes no sense to me why the original did not work (actually sort of worked but with warning error) and why the below works, but it does (another anomaly in PowerApps code I guess).
Switch(
Dropdown1.Selected.'Site (Site)',
"BNO",
Distinct(
BNO,
'BNO (BNO)'
),
"MGR",
Distinct(
MGR,
'MNR (MNR)'
),
"YourThirdChoice",
Distinct(
YourThirdList,
YourThirdField
),
"YourFourthChoice",
Distinct(
YourFourthList,
YourFourthField
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
By George we got it!
Thanks for sticking with it @WarrenBelz
Much appreciated, many internet points to you. Thank you 🤘
No problems @SunnyJess ,
Added another entry to my "Stranger Things" list as well 🤔
User | Count |
---|---|
161 | |
96 | |
76 | |
72 | |
59 |
User | Count |
---|---|
213 | |
166 | |
97 | |
95 | |
77 |