Getting rid of zeros

R

RWI

I am looking to separate out an apartment number. I have data that looks
like this 000030 and it stands for apt 30. Is there a way to parse out the
zeros so I can get to just the non zero numbers?

I know I would have to look at each space and see if it's a zero, but is
this easy?

Thanks!
RWI
 
F

fredg

I am looking to separate out an apartment number. I have data that looks
like this 000030 and it stands for apt 30. Is there a way to parse out the
zeros so I can get to just the non zero numbers?

I know I would have to look at each space and see if it's a zero, but is
this easy?

Thanks!
RWI

If the number is stored as 000030 then it is a text value.
=Val([FieldName]) should return 30
 

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