Announcements
Hi,
Yeah, this is a pretty common situation when working with rich text in Microsoft Dataverse through Power Apps.
What’s happening is your data is being stored correctly as HTML (since it came from a Rich Text Editor), but when you open it in the Edit Form, the default control in the DataCard is just a normal text input. That control doesn’t render HTML, so you end up seeing all the tags like <p>, <br>, etc.
<p>
<br>
To fix this, you don’t need a separate screen or custom submit logic. You can just replace the control inside the form:
Then set:
Parent.Default
RichTextEditor1.HtmlText
That way:
So essentially, you’re just swapping the “viewer” from a plain text box to something that understands HTML.
No need to build a separate editor unless you want more customization.
Hope this helps! Feel free to mark it as accepted ✅ and drop a like ❤️ to support the community 😊
you app is saving text with HTML tags like <p> and <br> but when editing, it shows those tags instead of the formatted text because the form is using a plain text box that cannot read HTML.
Fix it by swapping that plain text box inside the form card with a Rich Text Editor control. It knows how to read and display HTML properly.
.HtmlText
.Text
Yes, you can handle this within the form itself. Instead of removing the card, you can unlock the DataCard and add a Rich Text Editor inside it.
Then update the properties like this:
Default Property of the RichText box should like this:
RichTextEditor1.HtmlText //RichTextEditor1 - Replace with your control name
This way, the form will display the content in rich format and save it correctly back to Dataverse.
📩 Need more help? Just mention @Kalathiya and I’ll be happy to assist.
✔️ If this answer helped you, please tick “Does this answer your question?” so it can be marked as the Verified Answer.
💛 A Like always motivates me to keep contributing!
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.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 424
WarrenBelz 355 Most Valuable Professional
11manish 290