Working with Userform

Photomofo

Active Member
Joined
Aug 20, 2012
Messages
259
I can open the following userform but that's about it. I would like for the code to capture the selection, close the userform and continue to excecute after you select one of the boxes.

VBA Code:
Option Explicit


Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)

Dim ws As String
Dim row As Long
Dim column As Long
Dim UPDATE As String

ws = ActiveSheet.Name
column = ActiveCell.column
row = ActiveCell.row

UserForm2.Show

If column = 6 Then

    If CheckBox1.Value = True Then
    
    
    ElseIf CheckBox2.Value = True Then
    
    
    ElseIf CheckBox3.Value = True Then
    
    ElseIf CheckBox4.Value = True Then
    
    ElseIf CheckBox5.Value = True Then
    
    ElseIf CheckBox6.Value = True Then
    
    ElseIf CheckBox7.Value = True Then
    
    ElseIf CheckBox8.Value = True Then
    
    
    End If

end if
    



End Sub



1696703499909.png
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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