
Announcements
I have a choice field in a SharePoint list, which is set to the drop down option. I am building a new form in SharePoint using PowerApps and I want to be able to hide or show some fields based on the selection from this choice fields. How do I go about doing this?
Thanks for the help
Hi @Spawn10
We'll take one example Datacard 1 is your dropdown (say it has control name 'DataCardValueA') and Datacard 2 is a Text field you want to hide if say your dropdown value is "Choice2".
So to hide Datacard 2 and it's contents, select Datacard 2, go to its 'Visible' property and enter the following expression:
DataCardValueA.Selected.Value <> "Choice2"
Hope this helps