disable commandbutton1

boya

New Member
Joined
Jul 15, 2010
Messages
12
is there a way to disable use of the command button if textbox1, textbox2 or textbox3 are blank. However, the command button should be enabled if textbox1, textbox2 or textbox3 are not blank.
all help is appreciated.
many thanks.
regards
seb
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Assuming that you mean that at least one of them must have an entry try something like

Code:
Private Sub CommandButton1_Click()
If TextBox1.Text = "" And TextBox2.Text = "" And TextBox3.Text = "" Then Exit Sub
MsgBox "Boo!"
End Sub
 
Upvote 0
i don't think that worked. the command button seems to be enabled and does not disable if any of the textboxes are left empty.
 
Upvote 0

Forum statistics

Threads
1,214,984
Messages
6,122,601
Members
449,089
Latest member
Motoracer88

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