andy7172289
Technical User
The code below is an extract of what I've created so far and works. The data being filtered is basically 1, or 0 mostly with a few other values. The only thing I need is for the column to be filtered on '0's for me to them copy and paste the data to another tab in the workbook. It needs to say = if this filter on this column has no '0's then move on to the next step (which would be checking the nect column filter along), but if a '0' is present then filter on the '0' and follow these steps instead (which would involve filtering on '0' and copying data to another tab).
Can anyone help show me how to write that code?
If any clarification is needed please ask.
Range("V3:AS3").Select
Selection.AutoFilter
Range("V4").Select
ActiveSheet.Range("$V$3:$AS$232387").AutoFilter Field:=1, Criteria1:="0"
Range("C784:F1999").Select
Range(Selection, Selection.End(xlDown)).Select