Announcements
ThisItem.RichTextColumn
Set(varSelectedRow, ThisItem)
varSelectedRow.RichTextColumn
Patch(YourDataSource,varSelectedRow,{ RichTextColumn: RichTextEditor1.HtmlText })
If your intent is to display rich text (not edit it), insert an HTML Text control inside the gallery. Set its HTMLText property to ThisItem.Comments (or whatever rich text field you’re using). This allows each gallery item to render formatted content such as bold text, colors, and links correctly. ==> This option is best if you only need to display formatted text for each record without allowing users to edit it.
ThisItem.Comments
If you need to edit rich text, place a Rich Text Editor control outside the gallery. Set its Default property to Gallery1.Selected.Comments, so it shows the selected item’s text. Then use a Patch() formula (for example, on a Save button) to update the record:
Gallery1.Selected.Comments
Patch( TimeEntries, Gallery1.Selected, { Comments: RichTextEditor1.HtmlText } )
===> This approach is best when you want to edit the rich text of one selected record at a time.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 505
WarrenBelz 502 Most Valuable Professional
Haque 324