It's me again...
So to explain I have a series of 15 sheets.
Each sheet provides it's own references, dynamic ranges and so on.
I have provided an "Options" Tab. But, this by no means where all selections and fields are filled in.
I have a number of options on the Options tab, that I need to change corresponding cell in Sheet1 to blank,
if the referring cell in the Options tab changes.
WORKSHEET15 (Options Tab)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "I16" Then
Worksheets("Character Sheet").Range("C5").ClearContents
End If
If Target.Address(0, 0) = "I17" Then
Worksheets("Character Sheet").Range("C7").ClearContents
End If
End Sub
However, I also need dependent dropdown cells in Sheet1 to clear when their source is changed in Sheet1.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "E1" Then Range("E2").ClearContents
If Target.Address(0, 0) = "K7" Then Range("L7").ClearContents
If Target.Address(0, 0) = "K8" Then Range("L8").ClearContents
End Sub
While I am learning what all of this means; in no way do I claim to understand the breakdown or code as a whole. I have only recently started tinkering with VBA, whereas I am generally good enough with functions and data validation to cobble things together.
As always, any help is greatly appreciated.
Bookmarks