I\'ve got a code written that categorizes employees along with their qualifications. In order to weed out employees with unwanted qualifications I have applied a filter to e
The key points from my article Trapping a change to a filtered list with VBA
There is more detail and a sample file with the article, the key points are summarised below
SUBTOTAL
formula in A1
pointing back to the range being filtered on the main sheet.Worksheet_Calculate()
Event is added to the "dummy" WorkSheet, this Event fires when the SUBTOTAL
formula updates when the filter is changed.The next two setps are needed if it is desired to run the Workbook Calculation as Manual
Workbook_Open
Event to set the EnableCalculation
property of all sheets other than "Dummy" to False.