quotes around exported numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello, I have made a query that combines the data of 3
columns into one. My problem is that when I export it to
a text file there are quotes around the numbers. Is there
a way to export without getting the quotes.
Thanks
 
Place INT() around your equation

i.e

SumOfCols: INT(col1 + col2 + col3

You can also check and make sure the table columns are Numeric

Jim
 
-----Original Message-----
Place INT() around your equation.

i.e.

SumOfCols: INT(col1 + col2 + col3)

You can also check and make sure the table columns are Numeric.

Jim
.
great thanks
 
Back
Top