Thread: ShowAll Data
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Charles Maxson Charles Maxson is offline
external usenet poster
 
Posts: 24
Default ShowAll Data

Ciara,

Try this:

Sub ShowAllData()

Dim ws As Worksheet
Set ws = ActiveSheet

If ws.AutoFilterMode = True Then
For Each afFilter In ws.AutoFilter.Filters
If afFilter.On = True Then
ws.AutoFilter.Parent.ShowAllData
Exit For
End If
Next
End If

End Sub

--
Charles
www.officezealot.com


"CiaraG" wrote in message
...
Does anyone know how to check whether a filter is active
on a worksheet?

I want to ensure that all data is on show before running a
recorded macro. However if I try to "show all data" on a
worksheet where there is no criteria set on a filter I get
an error message.

Any ideas on how to avoid this?

Thanks,

CiaraG