How to Strip HTML tags from data

  • Thread starter Thread starter Steve P
  • Start date Start date
S

Steve P

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

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