Run action button once check box was checked

p9j123

Active Member
Joined
Apr 15, 2014
Messages
288
Office Version
  1. 2013
Platform
  1. Windows
I have the following code, once I check ccb14(check box) this will pop up an input box, when I put comment and click okay I want to execute the code associated with the command button.

right now it is not giving me any error but it is not also executing command button.

VBA Code:
Private Sub ccb14_Click()
 
 Do
        Ans = Application.InputBox("Enter Reason", "Job on Hold")
        If Ans = False Then
            Exit Sub
        ElseIf Ans = vbNullString Then
            MsgBox ("User didn't enter anything!")
        Else
            notestxt.Value = Ans
            GoTo xx
            Exit Sub
        End If
    Loop


xx:
Run Me.CommandButton1
End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Try this way

VBA Code:
Private Sub ccb14_Click()
  Dim Ans As String
  Do
    Ans = InputBox("Enter Reason", "Job on Hold")
    If StrPtr(Ans) = 0 Then
      MsgBox ("User canceled!")
      Exit Do
    ElseIf Ans = vbNullString Then
      MsgBox ("User didn't enter anything!")
    Else
      notestxt.Value = Ans
      Call CommandButton1_Click
      Exit Do
    End If
  Loop
End Sub
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,516
Messages
6,119,979
Members
448,934
Latest member
audette89

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