LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default limit range to unique values

On May 4, 5:53*pm, Tom Hutchins
wrote:
Try this Worksheet_Change event code. I named the range which should have no
duplicate values UniqRng in this example.

Private Sub Worksheet_Change(ByVal Target As Range)
Dim tgt As Range, xx As Range
For Each tgt In Target
* * If (Not Intersect(tgt, ActiveSheet.Range("UniqRng")) Is Nothing) And _
* * * * (Len(tgt.Value) 0) Then
* * * * For Each xx In ActiveSheet.Range("UniqRng")
* * * * * * If xx.Address < tgt.Address Then
* * * * * * * * If xx.Value = tgt.Value Then
* * * * * * * * * * xx.Value = vbNullString
* * * * * * * * End If
* * * * * * End If
* * * * Next xx
* * End If
Next tgt
End Sub

This code should be placed on the code page of the worksheet where you want
this to work.

Hope this helps,

Hutch


This worked perfectly. Thank you very much.!


 
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
Calculating the number of unique values with a range SiH23 Excel Discussion (Misc queries) 5 November 2nd 08 06:03 PM
Unique values from date range tqm1 Excel Discussion (Misc queries) 1 June 28th 07 08:04 AM
How do I get the unique values from a range? DaveO Excel Worksheet Functions 13 January 13th 06 12:55 AM
Sum Unique Values Across SpecialCellType Visible Range. Mark Excel Programming 1 September 15th 05 03:20 PM
Display unique values in a range. future Excel Programming 5 January 29th 04 11:24 PM


All times are GMT +1. The time now is 06:53 AM.

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"