Hi, This should be pretty simple: I want to create a macro that deletes the contents of B19 and C19 as soon as the user deletes the contents of A19.
I started with this but it doesn't work:
Option Compare Text
Sub clear_stuff()
If Range("A19").Value = "" Then
Range("B19:C19").ClearContents
End If
End Sub
Thank you.
I started with this but it doesn't work:
Option Compare Text
Sub clear_stuff()
If Range("A19").Value = "" Then
Range("B19:C19").ClearContents
End If
End Sub
Thank you.