We have a couple of rich text fields we've used on forms for users to enter information to. When we collect the data and export them to Excel the data is exporting with HTML anchors.
Is there anyway to prevent that from happening in the LPL?
You might be able to create a Derived Text field using the LPL operator plain text
return RichTextField plain text // strips all formatting (except new line) from RichText fields
Are these your own user fields? You could use Text type fields rather than Rich Text type fields. There is no automatic way to strip Rich Text field mark-up.
The community delivers again. Thank you Octavio, this was what we needed.