I have a SharePoint list (Intake Directory) with the following fields connected to my PowerApp:
Department (drop down - datacardvalue19)
Executive Sponsor (text)
Project Sponsor (drop down)
I want the user to select a value from the Department drop down and have the corresponding Executive Sponsor value auto-fill and the Project Sponsor drop down values to only show those project sponsors associated to the Executive Sponsor that was selected.
I'm running into an issue getting the Project Sponsor field to filter the way I need it. I've tried this but it's not working:
Filter(Choices([@'Intake Directory'].Project Sponsor); Value in Filter([@'Intake Directory'],DataCardValue19.Selected.Value))
Hi @j_singelais ,
Just correcting your syntax, does this work?
Filter(
Choices(
[@'Intake Directory'].Project Sponsor;
Value=DataCardValue19.Selected.Value
)
)
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.
Unfortunately no
Then try this
Filter(
[@'Intake Directory'];
'Project Sponsor'=DataCardValue19.Selected.Value
)
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.
Hi @j_singelais ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
User | Count |
---|---|
156 | |
95 | |
76 | |
72 | |
58 |
User | Count |
---|---|
216 | |
166 | |
97 | |
95 | |
74 |