Hello All,
Is it possible to get the ID of the newly just submitted for ForAll and I would like if a note added to the record patch to another list called Project History all notes with id's please.
Thank you so much.
ForAll(
galFlexible.AllItems,
Patch(
'Project List',
Defaults('Project List'),
{
Title: txtEditScreen_Title.Text
}
)
);
// EXAMPLE OTHER LIST WANTED TO PATCH FORLL NOTE JUST ADDED.
If(
!IsBlank(txtLineItemsNotes.Text),
Patch(
'Project History',
Defaults('Project History'),
{
Title: Now(),
Comments: Trim(txtLineItemsNotes.Text),
'Project Type': {Value: "Comments"}
ProjectID: I NEED THE ID'S JUST PATCHED HERE
}
)
);