limiting characters in validation rule

G

Guest

I'm trying to limit the number of characters entered in a field so that 5 or
more must be entered. I think I need to build an expression using "Len" but
can't get the syntax correct for the rest of it. I'm using Microsoft Access
2003.

Thanks for your help
 
A

Al Campagna

ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."
 
G

Guest

Thank you - I tried to put that in the Expression Builder, but it's saying
"The expression you entered contains invalid syntax. You may have entered an
operand without an operator."

Also, when I look in the Validation Rule field under Field Properties, there
are square boxes where it appears I've done a hard return. Should the syntax
not have any hard returns?



Al Campagna said:
ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."

ditnog said:
I'm trying to limit the number of characters entered in a field so that 5 or
more must be entered. I think I need to build an expression using "Len" but
can't get the syntax correct for the rest of it. I'm using Microsoft Access
2003.

Thanks for your help
 
G

Graham R Seach

Al, in the BeforeUpdate event, I think that should be
Len(Me.YourFieldName.Text).

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Al Campagna said:
ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."

ditnog said:
I'm trying to limit the number of characters entered in a field so that 5
or
more must be entered. I think I need to build an expression using "Len"
but
can't get the syntax correct for the rest of it. I'm using Microsoft
Access
2003.

Thanks for your help
 
M

missinglinq via AccessMonster.com

There's a couple things wrong here. First, ditnog says "I'm trying to limit
the number of characters entered in a field so that 5 or more MUST be entered.
" The code

On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

is designed to assure that 5 or LESS characters are entered, not 5 or MORE.

Next ditnog says "I tried to put that in the Expression Builder, but it's
saying "The expression you entered contains invalid syntax." You cannot enter
a sub function in the Expression Builder, it has to go in the Code Builder!
Assuming that the original post was correct, and the intent is to assure that
5 or MORE characters are entered, in the BeforeUpdate event of the textbox
you need code like this


Private SubYourFieldName_BeforeUpdate(Cancel As Integer)
If Len(YourFieldName) < 5 Then
MsgBox ("Too short")
Cancel = True
YourFieldName.Undo
End If
End Sub

BTW, Len([YourFieldName]), Len([YourFieldName.Value]) or Len(Me.
YourFieldName.Text) would all work here. The first two are really the same
thing, as Value is the default, thus YourFieldName is the same as
YourFieldName.Value. YourFieldName.Text can only be used when YourFieldName
has the focus and so works here as well.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
 
G

Guest

Yes, correct - I am trying to make sure 5 or MORE characters are entered.
Although this explanation is a few steps above what I know how to do. I
played around and ended up putting Len([FieldName])>5 in the Expression
Builder and I think it's working. I'm not sure what BeforeUpdate or Code
Builder refers to, or how you even get to them.

Thanks for your help though - I was able to muddle through using the Len
argument. Just curious where someone would know how to build that argument?
Books? Anywhere in Microsoft Help?
 
A

Al Campagna

Graham,
Hmmm... not sure I understand...
I tested the code, just as I indicated, and it worked fine.
Is there something I'm missing here?
Al

Graham R Seach said:
Al, in the BeforeUpdate event, I think that should be Len(Me.YourFieldName.Text).

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Al Campagna said:
ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."

ditnog said:
I'm trying to limit the number of characters entered in a field so that 5 or
more must be entered. I think I need to build an expression using "Len" but
can't get the syntax correct for the rest of it. I'm using Microsoft Access
2003.

Thanks for your help
 
M

missinglinq via AccessMonster.com

Al, as I indicated in my last post, Graham was mistaken in thinking you had
to use the Text Property
BTW, Len([YourFieldName]), Len([YourFieldName.Value]) or Len(Me.
YourFieldName.Text) would all work here. The first two are really the same
thing, as Value is the default, thus YourFieldName is the same as
YourFieldName.Value. YourFieldName.Text can only be used when YourFieldName
has the focus and so works here as well.

The only things wrong in your code were the lines

If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"

You apparently misread the original post, because ditnog wanted to make sure
that 5 or MORE characters WERE entered. The code should have read

If Len([YourFieldName]) < 5 Then
MsgBox "Too Short"
 
R

RoyVidar

ditnog said:
Yes, correct - I am trying to make sure 5 or MORE characters are
entered. Although this explanation is a few steps above what I know
how to do. I played around and ended up putting Len([FieldName])>5
in the Expression Builder and I think it's working. I'm not sure
what BeforeUpdate or Code Builder refers to, or how you even get to
them.

Thanks for your help though - I was able to muddle through using the
Len argument. Just curious where someone would know how to build
that argument? Books? Anywhere in Microsoft Help?

missinglinq via AccessMonster.com said:
There's a couple things wrong here. First, ditnog says "I'm trying
to limit the number of characters entered in a field so that 5 or
more MUST be entered. " The code

On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

is designed to assure that 5 or LESS characters are entered, not 5
or MORE.

Next ditnog says "I tried to put that in the Expression Builder, but
it's saying "The expression you entered contains invalid syntax."
You cannot enter a sub function in the Expression Builder, it has to
go in the Code Builder! Assuming that the original post was correct,
and the intent is to assure that 5 or MORE characters are entered,
in the BeforeUpdate event of the textbox you need code like this


Private SubYourFieldName_BeforeUpdate(Cancel As Integer)
If Len(YourFieldName) < 5 Then
MsgBox ("Too short")
Cancel = True
YourFieldName.Undo
End If
End Sub

BTW, Len([YourFieldName]), Len([YourFieldName.Value]) or Len(Me.
YourFieldName.Text) would all work here. The first two are really
the same thing, as Value is the default, thus YourFieldName is the
same as YourFieldName.Value. YourFieldName.Text can only be used
when YourFieldName has the focus and so works here as well.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com

Len([FieldName])>5 should work in the Validation Rule property of the
field, and has the advantage over using form events (the suggested
solutions) that

1 - you don't have to specify this rule every time/place you're
displaying this field to the user
2 - will also perform validation if someone updates the field from
other
sources, for instance from outside the app (query from another
app/script...?)

Remember to add an appropriate Validation Text.
 
G

Graham R Seach

Sorry Al, I couldn't be more wrong. I was thinking about the Change event.
Brain's not back in gear yet (long story).

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Al Campagna said:
Graham,
Hmmm... not sure I understand...
I tested the code, just as I indicated, and it worked fine.
Is there something I'm missing here?
Al

Graham R Seach said:
Al, in the BeforeUpdate event, I think that should be
Len(Me.YourFieldName.Text).

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Al Campagna said:
ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."

I'm trying to limit the number of characters entered in a field so that
5 or
more must be entered. I think I need to build an expression using "Len"
but
can't get the syntax correct for the rest of it. I'm using Microsoft
Access
2003.

Thanks for your help
 
G

Guest

Thanks so much - this is my first time posting and you've all been really
helpful. Thanks also for clarifying where the solution is best used, under
what conditions.



RoyVidar said:
ditnog said:
Yes, correct - I am trying to make sure 5 or MORE characters are
entered. Although this explanation is a few steps above what I know
how to do. I played around and ended up putting Len([FieldName])>5
in the Expression Builder and I think it's working. I'm not sure
what BeforeUpdate or Code Builder refers to, or how you even get to
them.

Thanks for your help though - I was able to muddle through using the
Len argument. Just curious where someone would know how to build
that argument? Books? Anywhere in Microsoft Help?

missinglinq via AccessMonster.com said:
There's a couple things wrong here. First, ditnog says "I'm trying
to limit the number of characters entered in a field so that 5 or
more MUST be entered. " The code

On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

is designed to assure that 5 or LESS characters are entered, not 5
or MORE.

Next ditnog says "I tried to put that in the Expression Builder, but
it's saying "The expression you entered contains invalid syntax."
You cannot enter a sub function in the Expression Builder, it has to
go in the Code Builder! Assuming that the original post was correct,
and the intent is to assure that 5 or MORE characters are entered,
in the BeforeUpdate event of the textbox you need code like this


Private SubYourFieldName_BeforeUpdate(Cancel As Integer)
If Len(YourFieldName) < 5 Then
MsgBox ("Too short")
Cancel = True
YourFieldName.Undo
End If
End Sub

BTW, Len([YourFieldName]), Len([YourFieldName.Value]) or Len(Me.
YourFieldName.Text) would all work here. The first two are really
the same thing, as Value is the default, thus YourFieldName is the
same as YourFieldName.Value. YourFieldName.Text can only be used
when YourFieldName has the focus and so works here as well.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com

Len([FieldName])>5 should work in the Validation Rule property of the
field, and has the advantage over using form events (the suggested
solutions) that

1 - you don't have to specify this rule every time/place you're
displaying this field to the user
2 - will also perform validation if someone updates the field from
other
sources, for instance from outside the app (query from another
app/script...?)

Remember to add an appropriate Validation Text.
 
B

ben

ditnog said:
Thank you - I tried to put that in the Expression Builder, but it's saying
"The expression you entered contains invalid syntax. You may have entered
an
operand without an operator."

Also, when I look in the Validation Rule field under Field Properties,
there
are square boxes where it appears I've done a hard return. Should the
syntax
not have any hard returns?



Al Campagna said:
ditnog,
On BeforeUpdate of the field...
If Len([YourFieldName]) > 5 Then
MsgBox "Too Long"
Cancel = True
[YourFieldName].Undo
End if

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."

ditnog said:
I'm trying to limit the number of characters entered in a field so that
5 or
more must be entered. I think I need to build an expression using "Len"
but
can't get the syntax correct for the rest of it. I'm using Microsoft
Access
2003.

Thanks for your help
 

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