Hello,
Is there a function in vba that will perform an action, once a specific cell (or range of cells) is deleted. So: "if cell "whatever" is deleted, than perform "this" action"
In the worksheet_change I've already tried:
If target.value = "" Then;
If target.value = vbNullString Then;
but I feel they're not the best options, are there any other methods?
Is there a function in vba that will perform an action, once a specific cell (or range of cells) is deleted. So: "if cell "whatever" is deleted, than perform "this" action"
In the worksheet_change I've already tried:
If target.value = "" Then;
If target.value = vbNullString Then;
but I feel they're not the best options, are there any other methods?