I have a repeating section implemented as a gallery to collect rows of data from users.
Each row has fields like "Quantity", "Price", and "Date". I want to:
How can I do row-level validation in a gallery?
ForAll(
colItems,
Patch(colItems, ThisRecord, {
HasError: IsBlank(Quantity) || IsBlank(Price) || IsBlank(Date)
})
)
If(
CountIf(colItems, HasError) > 0,
Notify("Please correct highlighted rows", NotificationType.Error),
SubmitForm(Form1)
)
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473