I read this as trying to clear the contents of a range.
if you were doing
Target.delete
try:
Application.enableevents = false
target.clearcontents
application.enableevents = true
Disabling events means that changing the sheet in code doesn't cause the change
event to fire.
DEFJ wrote:
I have an if/then statement on the worksheet "Change"
method that checks the value of 'target' and acts
accordingly. It works except when you use 'Delete' to
empty out the cell. I get a data mismatch error. I'm
guessing it's because target can't equal 'null'. Is there
any way around this?
Thanks in advance
--
Dave Peterson