Hi @Keijo ,
Edif form has a Valid property, from where you can get a true/false value if all the Data Card Values is required. So, all the required check boxes are not blank, Form.Valid = true, otherwise return false.
For your scenario, you can initialize a collection to include all the form names OnStart of App:
Collect(colForms,["EditForm1","EditForm2","EditForm3","EditForm4","EditForm5",...])
On the Gallery add a check box, Default set to:
Switch(
ThisItem.Value,
"EditForm1",
EditForm1.Valid,
"EditForm2",
EditForm2.Valid,
"EditForm3",
EditForm3.Valid,
...
)
Best regards,