Within Excel Vba, I'm conducting a filter on table column referencing a ListObject;
With TableX
.Range.AutoFilter Field:=15, Criteria1:="100"
End With
I want to test the filtered column before executing further code, as it is possible the filter may return no rows matching the value of 100. I've found some information about TotalsCalculation method but struggling to code it. Any thoughts on what I'm missing in this simple example??