Hi,
Actually I am displaying Title values in the Gallery from SharePoint List.
There after on click of item in the gallery I am showing remaining column values in Edit Form.
Now on the update button click I am trying to update the values from Edit Form with item ID using Patch Function.
But I am getting an issue when I am trying to do so and let me know if I am making any mistake
Below is the Patch Function that has been used to update
Patch('Incidents',
LookUp('Incidents',ID=ThisRecord.ID),
{
'Description':DataCardValue9.Text
}
)