I have a table with an NVarChar field that contains left aligned numeric values. I've tried using the VAL function to return the integer values, but I'm getting back Short Date results. What can I do to get integer results?
Thanks,
Arlin
Software/Hardware used:
ASKED:
February 9, 2009 4:33 PM
UPDATED:
February 17, 2009 11:32 PM
I agree with the recommendation.
Open the table in Design mode; Choose Data Type as Integer; Under Field Properties>> Field size As Long Integer.
Good luck
I ended up using the following in my query:
Expr2: CInt([Table_Field])
Worked fine.
Thanks,
Arlin