Ozgrid, Experts in Microsoft Excel Spreadsheets
Javascript DHTML Drop Down Menu Powered by dhtml-menu-builder.com
Learn how to create Excel dashboards.

TextBox for Text Only

Information Helpful? Why Not Donate.

TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Validating UserForm TextBox to Accept Only Text

Got any Excel Questions? Excel Help

See Also: TextBox for Numbers Only

Validating UserForm TextBox to Only Accept Text

If you are fairly comfortable with Excel VBA you will most likely want to design a UserForm to ensure correct use of your Spreadsheet. However, just placing some TextBoxes on a UserForm for users to enter data is sometimes not enough. For example, the TextBoxes may be intended to take only text data and not numbers. To do this you can use some code as shown below.

Dim bNumbers As Boolean



Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)

    OnlyText

    Cancel = bNumbers

End Sub



Private Sub OnlyText()

	If TypeName(Me.ActiveControl) = "TextBox" Then



    	If ActiveControl = vbNullString Then Exit Sub

        	If IsNumeric(ActiveControl) Then

            	MsgBox "Sorry, text only"

            	ActiveControl = vbNullString

            	bNumbers = True

        	End If

        	

	End If

End Sub

As with any UserForm Control code, this code must reside in the Private Module of the UserForm Object

New & Less Than You Think: List Managers | Working With Excel Sheets In VBA | Excel Charting Lessons | Delete rows by condition | TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money

Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to special@ozgrid.com 31 days after purchase date.


Instant Download and Money Back Guarantee on Most Software

Try out: Analyzer XL | Downloader XL | Smart VBA | Trader XL Pro (best value) | ConsoXL | MergeXL | O2OLAP for Excel | MORE>>

Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!

Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS