Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 153
Default Loop through a filtered range and copy unique values to a second sheet

That works brilliantly! My mind was totally focused on finding a
match (or not); didn't even think about counting. Very nice. As usual,
thank you very much, Claus!!

Frank

On Sat, 4 Jun 2016 11:19:40 +0200, Claus Busch
wrote:

Sub Macro5()
'
Dim wksQB As Worksheet, wksMDR As Worksheet
Dim rngC As Range, nameRange As Range
Dim LRow As Long

Set wksQB = ActiveWorkbook.Sheets("QueryBuster")
Set wksMDR = ActiveWorkbook.Sheets("MDR Worksheet")
LRow = wksQB.Cells(Rows.Count, "A").End(xlUp).Row
Set nameRange = wksQB.Range("E2:E" &
LRow).SpecialCells(xlCellTypeVisible)


For Each rngC In nameRange
If Application.CountIf(wksMDR.Range("A:A"), rngC) = 0 Then
wksMDR.Cells(Rows.Count, "A").End(xlUp)(2) = rngC
End If
Next
End Sub

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Loop thru filtered sheet, copy unique values to another sheet Phrank Excel Programming 0 June 4th 16 12:58 AM
copy unique values into listbox, then modify sheet from these values Matthew Dyer Excel Programming 4 September 28th 09 04:11 PM
count unique values in a filtered range ChrisR Excel Worksheet Functions 2 July 1st 08 07:02 PM
Finding unique values from a filtered range Rich[_30_] Excel Programming 0 May 11th 06 03:53 PM
Paste range of values into filtered sheet ken2005 Excel Discussion (Misc queries) 3 October 3rd 05 11:22 AM


All times are GMT +1. The time now is 10:27 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"