Convert Text

P

Pass-the-reality

How do I change my field SAN from text to a number field within the query?
 
K

KARL DEWEY

Why would you want to? Are you planning on adding two together or
multiplying them?
If you really must then to convert to long integer --
CLng([YourField])
 
J

John W. Vinson

How do I change my field SAN from text to a number field within the query?

Use the Val() function:

SANAsNumber: Val([SAN])

in a vacant Field cell will return a Number datatype appropriate to the field
data.
 
Top