Is it possible ?

Malkavian

Registered User.
Local time
Today, 18:55
Joined
Jan 26, 2006
Messages
23
Is it possible for access to recognise "0009500" as a value?

If so, how can this be done.

- Malk
 
Do you mean a number?
VAL(string) or CLNG(string) depending on your version will convert a string to a number. If the version you use supports the Cxxx functions, use those as they will be forward compatable.
 
I'm stuck with using 97' and yes it is a number with the value of 0009500.

- Malk
 
Well VAL(string) will conver it to a numeric for you.
(replace string with your string value)
You can use it in a query or whatever, say your column is Nvalue
NewNvalue: val([Nvalue]) will make it a numeric for you.
 

Users who are viewing this thread

Back
Top Bottom