field size question

S

Sean G.

Hello,

How do I see how large a field is (as in how many
characters are in the field?)

Thank you.

-Sean
 
S

Sean G.

I'm sorry, what I meant to say is, I want to cycle
through records on a form and have access know how many
characters are in the "client#" field Some clients have
more numbers in their field than others. I will be
making an IF ELSE off of the findings. Thanks.

-Sean
 
T

Tom Ross

You probably want to use the Len function to find the length of the string
stored in the client field

=len([client#]

BTW I don't recommend using '#' as part of a field name. It may force you
to make extra brackets or quotes or cause extra headaches. Try 'ClientNum'
instead
 
S

Sean G.

Thank you very much, that was very helpful...

-Sean

-----Original Message-----
You probably want to use the Len function to find the length of the string
stored in the client field

=len([client#]

BTW I don't recommend using '#' as part of a field name. It may force you
to make extra brackets or quotes or cause extra headaches. Try 'ClientNum'
instead


I'm sorry, what I meant to say is, I want to cycle
through records on a form and have access know how many
characters are in the "client#" field Some clients have
more numbers in their field than others. I will be
making an IF ELSE off of the findings. Thanks.

-Sean


.
 

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