Results 1 to 4 of 4

List Unique Values of Visible Cells

Threaded View

  1. #1
    Valued Forum Contributor realniceguy5000's Avatar
    Join Date
    03-20-2008
    Location
    Fl
    MS-Off Ver
    Excel 2003 & 2010
    Posts
    951

    List Unique Values of Visible Cells

    Hi,

    Would someone take a look at this script below, I keep getting an error "Unable to get countif property of worksheet function class"

    I'm running the script on a workbook that is using auto filter. I'm just looking to list the UniqueValues that are visible in col. "Q".

    Thanks for the help, Mike

    Sub ListUniqueValues()
     
     Dim SearchRng     As Range
     Dim ResultRng     As Range
     Dim Cel           As Range
     Dim iRow          As Long
     
     'Set SearchRng = Range("Q3", Range("Q3").End(xlDown))
     Set SearchRng = Range("Q3:Q65000").SpecialCells(xlVisible)
     
            'Application.InputBox("Select search range","Find Unique Values", Type:=8)
     Do
        Set ResultRng = SearchRng.Offset(, 1)
            'Application.InputBox("Select results columnar range","Write Unique Values", Type:=8)
     Loop Until ResultRng.Columns.Count = 1
     
     iRow = 0
     For Each Cel In SearchRng
        If Application.WorksheetFunction.CountIf(ResultRng, Cel.Value) = 0 Then
           
           iRow = iRow + 1
           If iRow > ResultRng.Rows.Count Then
              MsgBox "Not enough rows in result range to write all unique values", _
                    vbwarning, "Run terminated"
              Exit Sub
           Else
              ResultRng(iRow).Value = Cel.Value
           End If
        End If
     Next Cel
    
    End Sub
    Last edited by realniceguy5000; 03-05-2010 at 10:18 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1