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

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

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