Multiple Clear Dependent Validation Lists

drphilbill

New Member
Joined
Nov 18, 2015
Messages
1
I'm using the following code to clear different lists in different cells:

However, all of them work except for If Target = Range("T5")... which clears all the data validation lists instead of just T6 and T9.


Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Target = Range("T4") Then
If Target.Validation.Type = 3 Then
Application.EnableEvents = False
Range("T5").ClearContents
Range("T6").ClearContents
Range("T9").ClearContents
End If
End If


If Target = Range("T5") Then
If Target.Validation.Type = 3 Then
ApplicationEnableEvents = False
Range("T6").ClearContents
Range("T9").ClearContents
End If
End If


If Target = Range("T9") Then
If Target.Validation.Type = 3 Then
Application.EnableEvents = False
Range("T4").ClearContents
Range("T5").ClearContents
Range("T6").ClearContents
End If
End If


If Target = Range("T8") Then
If Target.Validation.Type = 3 Then
Application.EnableEvents = False
Range("T9").ClearContents
End If
End If
exitHandler:
Application.EnableEvents = True
Exit Sub


End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college

Forum statistics

Threads
1,216,101
Messages
6,128,844
Members
449,471
Latest member
lachbee

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