Hello all, first let me give a brief description of my form,
- I created my app from a SPO list using the "Create an App" option, so I do not have the SharePoint Integration feature in PowerApps designer.
- My app has conditionally hidden and conditionally required drop down and fields.
Here is my scenario,
- The user changes the primary drop down in edit mode (new or edit mode)
- this action hides a conditionally required drop down along with the value selected
- this unnecessary value gets submitted
I am able to clear one of the text boxes by setting the default to "",
- If(DataCardValue33.Selected.Value = "Choice1" Or DataCardValue33.Selected.Value = "choice4",Parent.Default,"")
however, this does not work on the drop down, I get an error because a record is expected.
how do I prevent the drop from storing the selected value when gets hidden and is no longer required because the user changed the primary category, maybe a condition in the OnSubmit to clear the unnecessary values?
Thanks for any help