Need to be able to launch a launch a macro when a cell change in value from empty and change it again when it goes back to empty.
Am using "Private Sub Worksheet_Change(ByVal Target As Range)" but i cant find a way to do it.

Found on the web something like...

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column = 4 Then myVBMacro
End Sub

But it looks it doesnt recognize "myVBMacro"

Any idea.. am stuck!!!

Cheers
BC