Hello!
As the title says I'm trying to patch data to a SharePoint column. When patching the error "specified column does not exists:"IDcopy" " keeps appearing.
The Patch function:
If(
JOB_LIST_GALLERY.Selected.JOB_DATUM_FINISHED = Blank();
Patch(
JOBIO_DATA;
JOB_LIST_GALLERY.Selected;
{
JOB_DATUM_FINISHED: CurrentTime;
JOB_STATUS: {Value: "Finished"}
}
);
Set(PopupEdit;false)
);;
Set(PopupEdit;false)
The AddColumns() function can be found here:
Sort(
Sort(
Search(
AddColumns(
Filter(
JOBIO_DATA;
IsBlank(Location_Cbox.SelectedItems.Value) || IsEmpty(Location_Cbox.SelectedItems.Value) || JOB_LOCATION.Value = Location_Cbox.Selected.Value;
IsBlank(Function_Cbox.SelectedItems.Value) || IsEmpty(Function_Cbox.SelectedItems.Value) || JOB_WHO.Value = Function_Cbox.Selected.Value;
IsBlank(Priority_Cbox.SelectedItems.Value) || IsEmpty(Priority_Cbox.SelectedItems.Value) || JOB_PRIORITY.Value = Priority_Cbox.Selected.Value;
IsBlank(Status_Cbox.SelectedItems.Value) || IsEmpty(Status_Cbox.SelectedItems.Value) || JOB_STATUS.Value = Status_Cbox.Selected.Value;
IsBlank(Parts_Cbox.SelectedItems.Value) || IsEmpty(Parts_Cbox.SelectedItems.Value) || JOB_PARTS_PRESENT.Value = Parts_Cbox.Selected.Value
);
"IDcopy";
Text('Id (ID)')
);
Search_Txtinput.Text;
"JOB_DESCRIPTION";
"IDcopy"
);
JOB_PRIORITY.Value;
SortOrder.Ascending
);
JOB_STATUS.Value;
SortOrder.Descending
)
Can anyone give information on how to correctly setup the patch function so it works as intended?
Kind regards,
Seba Poncelet

Report
All responses (
Answers (