Help Needed VBA

Jewel0909

New Member
Joined
Aug 20, 2015
Messages
5
Hi,

Here's my problem with my Userform. I have three(3) statuses namely, "Good", "Bad", "Normal" from which i wanted to appear in one of my userform's Textboxes everytime i tick a checkbox. Let's say i have 3 textboxes and i ticked one of them, my userform textbox would automatically show "GOOD".Then if i ticked two of them, textbox message changes to "NORMAL". When all three checkboxes are ticked,"BAD" (status) comes out. So basically, the textbox value changes on every tick depending on how many checkboxes are ticked.
Please help!:(
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try this:
Code:
Private Sub CheckBox1_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
 If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"

End Sub

Private Sub CheckBox2_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"
End Sub
Private Sub CheckBox3_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"
End Sub
 
Upvote 0
Try this:
Code:
Private Sub CheckBox1_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
 If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"

End Sub

Private Sub CheckBox2_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"
End Sub
Private Sub CheckBox3_Click()
Dim ctl As Control
 Dim j As Long
 For Each ctl In Me.Controls
 If TypeOf ctl Is MSForms.CheckBox Then
 If Me.Controls(ctl.Name).Value = True Then
 j = j + 1
 End If
 End If
 Next
If j = 0 Then TextBox1.Value = ""
 If j = 1 Then TextBox1.Value = "Good"
 If j = 2 Then TextBox1.Value = "Normal"
 If j = 3 Then TextBox1.Value = "Bad"
End Sub

Hi,
Thanks for the code, it works perfectly. Though what if i want the code to be executed only on selected checkboxes. Let's say, i have total of 10 checkboxes in the form and i only want the code to be executed on checkboxes 1,2&3. Which means that the result vary on how many checkboxes selected from 1-3. So regardless if i tick any of the checkbox from 4-10, the result will not change.
 
Upvote 0
Somehow you would have to tell the script which checkboxes to look at to see if it's checked. Which would have to be a UserForm Multi select listbox or get the values from cells on your sheet.
 
Upvote 0

Forum statistics

Threads
1,213,517
Messages
6,114,089
Members
448,548
Latest member
harryls

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