Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Checking to see if text field values equal 100 2

Status
Not open for further replies.

josephwc

Programmer
Oct 13, 2005
83
US
I have a series of text fields in an MS Access XP form.
They represent number values as shown below. I do not want to convert these values into numbers but on the form I want to make sure that the text field values entered if they were numbered equals 100. Any ideas?

Field1 = "000"
Field2 = "050"
Field3 = "050
 
Val("50") will convert to a number for your purpose.
 
or
Code:
[blue]CInt("050")[/blue]

Calvin.gif
See Ya! . . . . . .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top