I have what I think is a very simple problem, setting up an autofilter to filter for zero, that I just can't get to work. I have built a macro enabled workbook in Excel 2007 that needs to be compatible with 2003 excel. In it, I run the following code to apply and set an autofilter on the currently selected sheet.
Range("A5:E5").AutoFilter field:=3, Criteria1:=0
This works as expected in 2007. When testing on a 2003 machine, nothing is filtered in the Criteria1 field - all rows remain unfiltered/visible - but no error is given. Any reason why?
Criteria1:="0"- Lindsay