Input masks

Audiojoe

Active Member
Joined
Feb 20, 2002
Messages
285
I am designing a form and in one of the text boxes I would like to have something like an input mask, like the ones used in Access. Basically I need all the users to put in a seven digit number. If they dont and put a six digit or eight digit etc, then I need a msgbox to appear saying "This field needs to contain seven digits"

Can anyone help?
This message was edited by Audiojoe on 2002-03-07 08:45
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
On 2002-03-07 08:17, Audiojoe wrote:
I am designing a form and in one of the text boxes I would like to have something like an input mask, like the ones used in Access. Basically I need all the users to put in a seven digit number. If they dont and put a six digit or eight digit etc, then I need a msgbox to appear saying "This field needs to contain seven digits"

Can anyone help?
This message was edited by Audiojoe on 2002-03-07 08:45
Option Explicit


Dim MyStr1 As String, MyLen

Sub DetermineLength()
MyStr1 = InputBox("Insert Seven Digits")
MyLen = Len(MyStr1)
If MyLen<> 7 Then
MsgBox ("not 7 digits")
Range("A1").Value = ""
Else
MsgBox ("Cool")
Range("A1").Value = MyStr1
End If


End Sub
 
Upvote 0
As an alternative, if you don't require a text box, you can use data validation to specify the text length in an individual cell. On the data menu select validation, for a validation criteria select text length, then set the minimum and maximum length for 7.
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,938
Latest member
Aaliya13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top