Hi all,
I am composing a worksheet_change code.
How do I express in VBA so that only changes in named ranges:
CWC
PRO
UPL
will trigger the macro?
I used named ranges because the users are inserting columns in the data table.
It is kinda like:
But above is a wrong syntax.
Thanks
I am composing a worksheet_change code.
How do I express in VBA so that only changes in named ranges:
CWC
PRO
UPL
will trigger the macro?
I used named ranges because the users are inserting columns in the data table.
It is kinda like:
Code:
IF NOT INTERSECT(TARGET, RANGE("CWC")) OR IF NOT INTERSECT(TARGET, RANGE("PRO")) OR IF NOT INTERSECT(TARGET, RANGE("UPL")) THEN
But above is a wrong syntax.
Thanks