how to remove html tags from a field in MSACCESS.

  • Thread starter Thread starter KSKFM
  • Start date Start date
K

KSKFM

I am importing data from SharePoint list to MSACCESS. I need to strip out
html tags from the field values
 
What version?

If you are using Access 2007 or 2010, you could use the PlainText()
function, or store the data in a RichText memo field.

Otherwise you may need to use Instr() to locate the "<" and the following
">", Len() and Mid().
 
Back
Top