I am working with data submitted by field personnel. Very often our questions ask for lengths and measurements, and naturally they use " and ' symbols to designate feet and inches, which causes issues in our data and reports later on. I am needing to replace these ' and " characters with "ft" and "in" respectively. For some reason the following will not work for me. I can't just use the StripQuotes() function either because units are pretty important information.
Replace([FIELD], '"', 'ft')
Replace([FIELD], "'", "in")
Does anyone have any other suggestions? Thanks!