Hi Experts,
In a SharePoint list, there are several fields that are available automatically before you start creating your own columns, one of these is the ID field which has a unique value every time a new entry is entered. I'm trying to patch some updates to my sharepoint list which is located via the ID column so i'm entering the below code (i've shortened the actual code for ease) but it's telling me that "The type of this argument "ID" does not match the expected type 'Number' . Found type "Text". Can you advise what this should be changed to please so that I can update the sharepoint items and not create new entries?
Patch(QualityPortal, Defaults(QualityPortal),
{
ID: 'ID_DataCard'.Text,
Title: 'ValueDateTimeNow-1'.Text
});
Many thanks in advance