Hi
I have strange situation
In one my project exact code works in other not.
The code should update record in dataverse but instead it updates all records in dataverse table with the last edited value in my gallery. The code looks simple. new_busena is a choice type column
Patch(Remontai,
ForAll(
Filter(Gallery2_2.AllItems,Checkbox1.Checked) ,
{
new_remontaiid:new_remontaiid,
new_busena:ComboBoxBusena.Selected.Value
//new_darbuotojas:LookUp(Darbuotojai,'Darbuotojo kodas'=ComboBoxDarbuotojas_1.Selected.'Darbuotojo kodas')
}
)
);