I have seen this type of question before on this and other forums, but have yet to see a solution. I have some code that is supposed to clear the contents of a cell whenever another cell is changed. The cell that changes is a drop down data validation list. This code works fine in another workbook, but does nothing in the current one and I have done too much other work to start over now. However, if I type in one of the drop down selection instead of selecting it from the list or set the "calculation" to manual in the tool bar, the function works perfectly. But, if I have the function turn calculations to manual, it still does nothing. Why is this happening and how can I fix it? This is the code I am using.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$14" Then
ThisWorkbook.ActiveSheet.Range("C15").ClearContents
End If
Thank you for your help!
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$14" Then
ThisWorkbook.ActiveSheet.Range("C15").ClearContents
End If
Thank you for your help!