Results 1 to 6 of 6

VBA code to make multiple text boxes numeric entry only

Threaded View

  1. #1
    Registered User
    Join Date
    05-10-2013
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    11

    VBA code to make multiple text boxes numeric entry only

    Hello

    Im very new to VBA coding and just looking for some help with short cuts.

    I have a large userform used to record productivity data in my workplace. I have 167 text boxes (named Input1 up to Input167) and I want them to only be able to enter in numbers.


    I have the following code which works fine, but I really dont want to have to repeat it 167 times. Can someone help me with some code so that I can cover all 167 text boxes at the one time.

    Private Sub Input1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
    
    If KeyAscii < Asc("0") Or KeyAscii > Asc("9") Then
        KeyAscii = 0
    
    End If
    
    End Sub
    Thanks in advance for your help

    Jess
    Last edited by vlady; 05-19-2013 at 10:49 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1