Hi,
I have a form, where different hidden field appear based on information from a drop down.
Dropdown X or Y= hidden field A,
Dropdown Z = hidden field B.
I've also added the "If(BasicInfoForm.Valid,DisplayMode.Edit,Disabled)" option to the next button on my screen.
But now I can not move to the next screen, because not relevant hidden information is "required = true".
Everything is required = true, but not all the information is always relevant.
Is it possible to make the required option match the visible option?
I have followed this video when creating my app:
Multiple Screen Form Control in Power Apps - YouTube
At the end Reza creates a variable for the view and edit buttons. Probably because of the hidden mandatory field, I can not navigate in view mode to the 2nd form.
Thanks!
@Mihály The Form.Valid is an aggregate of Data_Card1.Valid && Data_Card2.Valid && Data_Card3.Valid .... values
To only pick and choose some, you have to pick and choose them manually
Instead of BasicInfoForm.Valid
you must use
Data_Card1.Valid && Data_Card2.Valid && Data_Card3.Valid
only picking and choosing the Data Cards you want to validate rather than those of whole form.
Check if above might help.
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473