I have a Powerapps SharePoint List Form. On the form I have a Rich Text field that works perfectly and brings in the Rich Text into SP which is what the user is requesting. However, they also want to have a character count which I have and which works if the I was only using a plain text field. The character count field (characters remaining) doesn't work on rich text or a plain text whose default is the Rich Text because it counts all the HTML code in the background. Does anyone have a workaround for this?
@Anonymous Try this,
Len(PlainText(yourHtmlText))
@Anonymous
If you're just trying to count characters and ignore the html, then change your formula to:
Len(PlainText(yourInput.Text))
That will remove all the html and count them as you want.
I hope this is helpful for you.
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473