Hi,
I have a checkbox that selects bulk item that needed to be updated however when I update only one field the other ones are deleted. So changed the Status to "Planned" and the rest (Assigned To and Date) was deleted.

Here's the my code in the Update button:
ForAll(
Filter(
Gallery2.AllItems,
Checkbox1.Value = true
) As vEdit,
Patch(
QAOversight_RegisterCaseTables,LookUp(QAOversight_RegisterCaseTables, Id = vEdit.Id),
{crfad_entrystatus:EntryStatus_Overview_1.Selected.Value,
crfad_assignedto: Label_assignedTo.Text,
crfad_selecteddate:DateValue_SelectedDate_Overview_1.SelectedDate
}
)
)
Any help appreciated!
Regards,
M