Hello,
I am trying to bulk update records in SQL table "dbo.Test" from Gallary "Gallery1"
I have a collection which is made from Gallery1

here is the onSelect when they click Approve
ForAll(Collection1,Patch(
'dbo.Test',
First(
Filter(
''dbo.Test',
ID = Gallery1.ID
)
),
{
Status:"Approved"
}
))
is it correct?