CF versus change macro / priority question

w_dart

Board Regular
Joined
Dec 20, 2006
Messages
57
Hi all,

do I conclude correctly that conditional formatting formats overrule formats applied by a worksheet change macro?

If that's indeed the case is there a way to circumvent this, i.e. give the higher priority to the change macro? My excel version is 2003.

Thanks for any ideas,

Kind regards,

WD
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
You are correct that CF overrides Worksheet_Change. I think your best option would be to get rid of the CF completely and write all of your conditions into the VBA code. I’m not aware of any sensible way to override the CF unless you use your code to store the CF for the target cell in a location somewhere else and then delete the CF from the cell using:
Code:
Target.FormatConditions.Delete
You would have to then obviously put the CF formula back in the event that the coded condition was not true. This seems far too impractical!!
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,825
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top