Is Cond. Formatting better than Worksheet_Change?

ElEdwards

Board Regular
Joined
Aug 29, 2002
Messages
220
I have a spreadsheet which has 500 possible entries in one column. At present, I have each of those cells set up with Conditional Formatting (if there are more than 255 characters in the cell, make the characters red)... but I've noticed that adding more Cond. Formatting can greatly increase the filesize of my spreadsheet. (It started out at 500K and now is 3Meg)

So----
1) Would a 'Private Sub Worksheet_Change' be more efficient?

2) I already have a 'Private Sub Worksheet_Change' in place... can there be more than one instance or do I need to add to the present one?

Thanks!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi,

Yes. The code should reduce your filesize.

Yes. You'll need to add to your current Worksheet_Change procedure. You can't have 2 procedures within the same scope with the same name, otherwise you'll get an 'ambiguous name' error.
 
Upvote 0

Forum statistics

Threads
1,215,459
Messages
6,124,947
Members
449,198
Latest member
MhammadishaqKhan

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