I am trying to hide rows in a particular column with zero values and blank values after clicking a button. I have coded the following macro:
ActiveSheet.Range("$A$16:$C$2106").AutoFilter Field:=3, Criteria1:="<>0", Operator:=xlFilterValues
It correctly filters 0 values. However, it is not filtering about blank cells. Is this the correct code?