I use worksheet_change macros to force changes. Basically, every time C2 is changed, the dependent boxes clear. If C3 changes, C4 is cleared. Right-click on the sheet tab, choose VIEW CODE and insert this:
Code:Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("C2")) Is Nothing Then Application.EnableEvents = False Range("C3:C4").ClearContents Application.EnableEvents = True End If If Not Intersect(Target, Range("C3")) Is Nothing Then Application.EnableEvents = False Range("C4").ClearContents Application.EnableEvents = True End If End Sub


LinkBack URL
About LinkBacks





Reply With Quote


Bookmarks