Thanks for coming to this thread.
What I have:
-A report with an autofilter on rows A:G
What I need:
-Circumstantial code that unfilters a specific column if there is a filter on it.
-Running my code below unfilters the entire range of A:G.
-In this instance, I only want "F" unfiltered, leaving any other filters alone if they are filtered.
With Sheets("DATA")
If .Range("F1").AutoFilter = True Then
ActiveSheet.Range("$A$1:$G$59826").AutoFilter Field:=6
Else
End If
End With
Any and all ideas are greatly appreciated! Thank you so much!