R
Raul
You can try modifying the query you're using to get the
data out of Oracle to cast the data as interger, real,
string, etc.
for example:
SELECT CAST(ordernumber as integer) newordernum
FROM ......
WHERE......
Are you using ADO to get the data and place it directly
into Excel, or are you using Oracle SQLplus to get the
data and then pasting the data into Excel?
If you're using ADO and you're putting the data into an
array, you can use the Dim statement to set the datatype
to string or double, etc.
Hope this helps,
Raul
data out of Oracle to cast the data as interger, real,
string, etc.
for example:
SELECT CAST(ordernumber as integer) newordernum
FROM ......
WHERE......
Are you using ADO to get the data and place it directly
into Excel, or are you using Oracle SQLplus to get the
data and then pasting the data into Excel?
If you're using ADO and you're putting the data into an
array, you can use the Dim statement to set the datatype
to string or double, etc.
Hope this helps,
Raul