R
RN Mark
Using a macro how can I check a worksheet to see if an autofilter is in place
and then show all data.
and then show all data.
Mike H said:Hi,
Like this
With Worksheets("sheet1")
If .FilterMode Then
.ShowAllData
End If
End With
Mike