Multiple SelectionChange Events Issue

happyhungarian

Active Member
Joined
Jul 19, 2011
Messages
252
Office Version
  1. 365
Platform
  1. Windows
Hi, I have two change events occuring on the same tab. It's currently erroring out on the highlighted RED section. What needs to be created?! Thanks!

Private Sub Worksheet_SelectionChange(ByVal Target As Range)



If Selection.Count = 1 Then
If Not Intersect(Target, Range("i3:AZ3")) Is Nothing Then

Dim response
response = MsgBox("Delete Category?", vbYesNo, "Tyvak Nano-Satellite Systems, Inc.")

If response = vbNo Then
Exit Sub
End If

ActiveCell.EntireColumn.Delete (xlLeft)

End If
End If





If Selection.Count = 1 Then
If Not Intersect(Target, Range("b15:b100")) Is Nothing Then

Dim response2
response2 = MsgBox("Delete Task?", vbYesNo, "Tyvak Nano-Satellite Systems, Inc.")

If response = vbNo Then
Exit Sub
End If

ActiveCell.EntireRow.Delete (xlUp)

End If
End If


End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try this


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Count = 1 Then
        If Not Intersect(Target, Range("i3:AZ3")) Is Nothing Then
        Dim response
        response = MsgBox("Delete Category?", vbYesNo, "Tyvak Nano-Satellite Systems, Inc.")
        If response = vbNo Then
            Exit Sub
        End If
        ActiveCell.EntireColumn.Delete (xlLeft)
        End If
    End If


    If Selection.Count = 1 Then
        If Not Intersect([COLOR=#0000ff]Selection[/COLOR], Range("b15:b100")) Is Nothing Then
            Dim response2
            response2 = MsgBox("Delete Task?", vbYesNo, "Tyvak Nano-Satellite Systems, Inc.")
            If response = vbNo Then
                Exit Sub
            End If
            ActiveCell.EntireRow.Delete (xlUp)
        End If
    End If
End Sub

This happens:
When you delete the column with this line:
Code:
ActiveCell.EntireColumn.Delete (xlLeft)

The Target object remains empty, that's why it sends you the error.
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,904
Messages
6,122,169
Members
449,070
Latest member
webster33

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