Why can't i filter two different columns with different criterias
Range("E4:AI183").Select
Selection.AutoFilter Field:=1, Criteria1:=Leverandor
Selection.AutoFilter Field:=35, Criteria1:="<"
be sure that the word Leverandor is a string variable with a value or wrap
it in quotes -- "Leverandor"
|