Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I capture the value that is shown on the bottom left corner after I
perform a filter function. I need to use that number within a macro. Thanks for the Help!!! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Are you Paputxi?
Option Explicit Sub testme() Dim TotalRows As Long Dim VisibleRows As Long With ActiveSheet.AutoFilter.Range.Columns(1) 'subtract the header from both TotalRows = .Cells.Count - 1 VisibleRows = .Cells.SpecialCells(xlCellTypeVisible).Count - 1 End With MsgBox VisibleRows & " of " & TotalRows & " records found" End Sub Worker Bee wrote: How do I capture the value that is shown on the bottom left corner after I perform a filter function. I need to use that number within a macro. Thanks for the Help!!! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto Filter - Protected sheet/workbook | Excel Discussion (Misc queries) | |||
Have you had a problem with Auto Filter freezing? | Excel Discussion (Misc queries) | |||
auto filter question | Excel Worksheet Functions | |||
The Auto Filter button lost the column specified option. | Excel Worksheet Functions | |||
Why can't my macro use Auto Filter when I told the Sheet Protecti. | Excel Worksheet Functions |