I have a gallery that is populated dynamically by a Collection so when you add items they show up in the gallery.
Each item has a blank TextInput box that allows users to enter a percentage.
I want to ensure that:
- There are no blank items
- A warning shows when the total is not 100%
I have figure out the total warning thing and will disable the submit button until it equals 100%
The bit I can't figure out is how to check for the blank input boxes
I have tried Visible:
If(
IsBlank(Gallery5_1.AllItems.Label24),
true,
false
)
but no luck
