Hello dear forum members and contributors,
I am new to PowerApps, I have created a vertical gallery in Power Apps, the gallery is linked to a list in sharepoint, I click each record and update it, when I am ready, I click a button to send the records to a teams channel, but before sending, I check if the report status is filled with "Yes' or "No" for all 10 records. I have written a code with if condition and it worked for the first record only, to check for all records, I used "ForAll" iterator, but the code gives error. I need your help.
ForAll(BrowseGallery1.AllItems,
If(
IsBlank(Label1.Text),
Notify(
"Some reports are not complete!",
NotificationType.Error
),
Set(
varshowpopup,
true
)
)
)