I just can't seem to get the correct quotes in the right sequence.
I want to replace all single quotes with nothing (remove them).
Replace(NotesStr, "'", "")
Except that this is nestled inside a DoCmd.RunSQL - my table name is different each time, so I can't make a permanent query.
"UPDATE.....Replace(NotesStr, "'", "")...."
Anyone know how to figure this out?