Hi,
I have a gallery with values and an input box.
Input box has been added to my gallery which allows a user to input values.
When all values are completed I want to use a button to update my collection rows with all the individual values a user has put for each line.
The code below works but it doesn't update my collection with the correct values in my Error column.
I get the same value for all rows.
Any help is greatly appreciate.
Thanks
ForAll(
'Reactive'.AllItems,
UpdateIf(Reactive,Row = ThisRecord.Row,
{
Error: [@'Input-Error ReActive'].Text
}
)
)