Consulting

Results 1 to 2 of 2

Thread: Get Row Count after Filters have been Set

  1. #1
    VBAX Mentor asingh's Avatar
    Joined
    Jul 2005
    Posts
    307
    Location

    Get Row Count after Filters have been Set

    Hi,

    Suppose I have set filters on column "A". As per the data in column "A" I will see only a limited number of rows, as per my filter critereon. I now want to get the count of how many rows are currently displayed...??

    How would this be possible with VBA..?


    thanks....
    asingh

  2. #2
    VBAX Mentor asingh's Avatar
    Joined
    Jul 2005
    Posts
    307
    Location
    Was able to solve it using the following:

    [VBA]
    Sub Rtrv_Row_Count(Row_Count_Current)
    '//first row count will be retrieved from here
    Dim rng_active As Range

    Set rng = ActiveSheet.AutoFilter.Range

    Range("A1").Select

    Row_Count_Current = ((rng.Columns(1).SpecialCells(xlVisible).Count) - 1)

    Set rng_active = Nothing

    End Sub
    [/VBA]
    '//Now I will only get the count of how many rows are on display with filters applied as per the selection critereon.......!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •