Access 2003

G

Guest

In my datasheet view I have a column with text and quotations around it.
Example
field: Customer
"text"
"textA"
"textAA"
What function do I use in the design view to return the column in the
datasheet view without quotations.
text
textA
textAA
the Mid function does not work becuase the entries in my datasheet view are
of different lengths.
 
G

Guest

Try the Replace function.

DoNotQuoteCustomer: Replace([Customer], '"', "")

The trick is single-quote double-quote single-quote for the first argument
and double-quote double-quote for the second argument.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top