How to Strip HTML tags from data

S

Steve P

I'm querying a MS Share Point list and need to strip HTML from the query
results.

Is there a way?
 
A

Allen Browne

Try wrapping PlainText() around the field name in the Field row of query
design, e.g.:
PlainText([Surname])
 
Top