Dear Experts
There are two textboxes in userform.
I want textbox1 to accept only Date value in format "dd-mm-yy"
Textbox2 should accept only logical vaue "Y" or "N"
Please help
Dear Experts
There are two textboxes in userform.
I want textbox1 to accept only Date value in format "dd-mm-yy"
Textbox2 should accept only logical vaue "Y" or "N"
Please help
Hi vba-lover
Try something like the below for textbox1 :
for the Yes or No textbox I would use a combobox with Yes or No options, but if you do want to use a textbox try something like![]()
If TextBox1.Text = Format(TextBox1.Text, "dd-mm-yyyy") Then 'your code here Else 'your code here End If
Let me know how you go!![]()
If TextBox2.Text <> "Y" Then If TextBox2.Text <> "N" Then MsgBox "Please Enter Y or N" Else End If End If
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks