Hi Experts,
I have a gallery that shows items raised in a sharepoint list, on the arrow on the gallery I have
Set(varRecord, ThisItem)
I then have a rich text editor box so that new comments can be entered and patched to an item in the sharepoint list via a button, the button's code is
Set(
varRecord,
Patch(
CustomerServices,
varRecord,
{Messages: varRecord.Messages & "***" & CountRows('Messages Gallery'.AllItems) + 1 & " - " & User().FullName & " - " & Now() &
":<br>" & RichTextEditor1.HtmlText}
)
);
Reset(RichTextEditor1)
I then have another gallery which I'd like to be able to see all of the previous messages that have been put on the select item from the first gallery, I assumed the code should be the below but it's telling me there's an error
Filter( Split(varRecord.Messages, "***"), !IsBlank(Result))
I've put a HtmlText input inside the 2nd gallery and entered the below in HtmlText but again getting an error, can you advise where i'm going wrong please?
ThisItem.Result