Worksheet_Change not called

JasonC-VBA

New Member
Joined
Aug 30, 2011
Messages
21
I have an “Equipment” worksheet contains about 300 rows listing pieces of equipment, quantities, prices, due dates and other miscellaneous items (15 columns total). Most of the quantities and due dates are calculated automatically via simple formulas. Cells with formulas are automatically shaded gray via conditional formatting checking a simple function:
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p> </o:p>
Function IsFormula(c)
IsFormula = c.HasFormula<o:p></o:p>
End Function
<o:p> </o:p>
This has worked fine for months.
<o:p> </o:p>
Recently I added a running subtotal and project cost change to the status bar. I use Worksheet_Change to call a subroutine that updates the status bar totals. This works fine on every worksheet except the equipment worksheet containing the conditional formatting. When quantities or prices are changed on this sheet the Worksheet_Change event is not called. When I delete the conditional formatting the Worksheet_Change event works and the subtotals update correctly.
<o:p> </o:p>
Is there a way for both to work simultaneously?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,224,548
Messages
6,179,453
Members
452,915
Latest member
hannnahheileen

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