Data stored as text convert to values

L

Leo Rod

Good afternoon,

I have a column in a set of data formatted as text; is there any way to
convert this information to values? They're all numbers ending with ".0000
"-
No decimal values are into this data column.

I try eliminating the ".0000 " from all the values replacing it by "" but
it still text and I cannot make any operations with it.

Can I add a calculated column with the same set of data into values like in
excel with the function "Values()"??

Please let me know if you guys can think of any other solution for this
predicament.

Respectfully,

Leo-MIA, FL
 
K

KARL DEWEY

Val([YourTextfield])
OR
CLng([YourTextfield]) to convert to long integer.

There are other functions to convert to specific type of numbers.
 
L

Leo Rod

thanks!!!


KARL DEWEY said:
Val([YourTextfield])
OR
CLng([YourTextfield]) to convert to long integer.

There are other functions to convert to specific type of numbers.

--
KARL DEWEY
Build a little - Test a little


Leo Rod said:
Good afternoon,

I have a column in a set of data formatted as text; is there any way to
convert this information to values? They're all numbers ending with
".0000
"-
No decimal values are into this data column.

I try eliminating the ".0000 " from all the values replacing it by ""
but
it still text and I cannot make any operations with it.

Can I add a calculated column with the same set of data into values like
in
excel with the function "Values()"??

Please let me know if you guys can think of any other solution for this
predicament.

Respectfully,

Leo-MIA, FL
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top