Very new to Power Apps so probably silly question.
I have a set of required fields in my power app, six in total.
However I only want some of the six to be 'required' based on the selection of a preceding radio button (only two options which are Product / Journey).
At the moment the display of the required items works properly based on selection. So if I select 'Journey' only the journey relevant 'required' fields are displayed to the user.
However, when the form is saved, the SharePoint list shows errors saying the hidden fields are missing data (which is true, but it doesn't matter as they aren't relevant for Journeys, that's why they are hidden when Journey is selected).
How would I make it so that when the radio button selection is made, the non visible data cards 'required' status is ignored (and not just hidden from view)?
Visible formula is - If(DataCardValue22.Selected.Value="Journey",true,false)
Required formula is - If(DataCardValue22.Selected.Value="Journey",true,false)
What I'd like is if the selected value is 'Product' (not Journey) then this data card should no longer be required.
Hope that makes sense... I suspect I probably I need to modify the 'required' field formula somehow...
many thanks