I have a SP List titled FinalReviews and at a click of a Delete Icon I like to set the Multi line Text value to Blank. None of the trials below seem to do the job. (It updates the Status but does not replace the Multiline Text Value to Blank...
Any Ideas?
Trial 1:
UpdateIf(
FinalReviews,
ThisRecord.BillsID = galTitlesHome.Selected.ID,
{
FinalNotes: "",
FRStatus: "Pending"
}
);
Trial 2:
Patch(
FinalReviews,
LookUp(
FinalReviews,
ThisRecord.BillsID = galTitlesHome.Selected.ID),
{
BillNo: galTitlesHome.Selected.BillNo,
FinalNotes: "",
FRStatus: "Pending"
}
);
Trial 3:
Patch(
FinalReviews,
galFinalReviews.Selected,
{
FinalNotes: "",
FRStatus: "Pending"
}
);
Thank you.