+ Reply to Thread
Results 1 to 4 of 4

Case sensitive duplicate numbering

Hybrid View

  1. #1
    Registered User
    Join Date
    01-21-2014
    Location
    Belgium
    MS-Off Ver
    Office 365
    Posts
    21

    Case sensitive duplicate numbering

    I have a dataset with 1 column with data that is separated by cells with "**".

    XX
    YY
    YY
    Xx
    XX
    Xx
    **
    XX
    YY
    YY
    Xx
    XX
    Xx
    **

    Desired result after using macro (with numbers in second column):
    XX 1
    YY 1
    YY 2
    Xx 1
    XX 2
    Xx 2
    ** 1
    XX 1
    YY 1
    YY 2
    Xx 1
    XX 2
    Xx 2
    ** 1

    Sadly my code isn't case sensitive, which kind of beats the purpose. My result:

    XX 1
    YY 1
    YY 2
    Xx 2
    XX 3
    Xx 4
    ** 1
    XX 1
    YY 1
    YY 2
    Xx 2
    XX 3
    Xx 4
    ** 1

    Any suggestions? My current code:


    Sub Number()
    Dim rCell As Range, rSource As Range, rStart As Range
    Dim iCounter As Integer
    Set rSource = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
    Set rStart = Range("A1")
    
    For Each rCell In rSource
    If rCell.Value = "**" Then Set rStart = rCell
    iCounter = Application.WorksheetFunction.CountIf(Range(rStart, rCell), rCell.Value)
    rCell.Offset(0, 1).Value = iCounter
    Next
    
    End Sub
    Thanks a million in advance!

  2. #2
    Forum Guru
    Join Date
    09-10-2017
    Location
    Chippenham, England
    MS-Off Ver
    365
    Posts
    15,755

    Re: Case sensitive duplicate numbering

    How about
    Sub Number()
    Dim rCell As Range, rSource As Range
    Set rSource = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
    
    With CreateObject("scripting.dictionary")
       For Each rCell In rSource
          If rCell.Value = "**" Then .removeall
          .Item(rCell.Value) = .Item(rCell.Value) + 1
          rCell.Offset(0, 1).Value = .Item(rCell.Value)
       Next
    End With
    End Sub

  3. #3
    Registered User
    Join Date
    01-21-2014
    Location
    Belgium
    MS-Off Ver
    Office 365
    Posts
    21

    Re: Case sensitive duplicate numbering

    Absolutely perfect. Thanks so much.

  4. #4
    Forum Guru
    Join Date
    09-10-2017
    Location
    Chippenham, England
    MS-Off Ver
    365
    Posts
    15,755

    Re: Case sensitive duplicate numbering

    You're welcome & thanks for the feedback.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Making duplicate filter case sensitive
    By JustStep25 in forum Excel General
    Replies: 4
    Last Post: 01-12-2018, 02:59 AM
  2. Case Sensitive
    By drew.parker in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-30-2016, 11:32 AM
  3. Duplicate rows, case sensitive
    By pomper in forum Excel General
    Replies: 2
    Last Post: 02-28-2015, 02:59 AM
  4. [SOLVED] Making the Duplicate Checking case sensitive?
    By JoshJ in forum Excel General
    Replies: 2
    Last Post: 11-13-2013, 10:20 AM
  5. Highlight duplicate rows based on column A but be case sensitive
    By theblade24 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-18-2013, 06:14 PM
  6. [SOLVED] SUMPRODUCT Or SUMIF - In case of Case sensitive???
    By lifeisaspreadsheet in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 10-28-2012, 07:57 AM
  7. [SOLVED] Case Sensitive w/ IF
    By jeffP in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 02-05-2006, 09:20 PM

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