+ Reply to Thread
Results 1 to 3 of 3

Find occurance with respect to count

Hybrid View

  1. #1
    Registered User
    Join Date
    10-08-2013
    Location
    bangalore
    MS-Off Ver
    Excel 2007
    Posts
    12

    Find occurance with respect to count

    hi,

    I want to find the date based on the occurance count. pls see attached file.


    thank you.
    Attached Files Attached Files

  2. #2
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Find occurance with respect to count

    Try this:-
    Sub MG19Nov03
    Dim Rng As Range, Dn As Range, n As Long
    Dim Ws As Worksheet
    Dim Q
    With CreateObject("scripting.dictionary")
    .CompareMode = vbTextCompare
    For Each Ws In Worksheets
        If Not Ws.Name = "Final Data" Then
    
    With Ws
        Set Rng = .Range(.Range("A2"), .Range("A" & Rows.Count).End(xlUp))
    End With
            For Each Dn In Rng
                If Not .Exists(Dn.Value) Then
                    .Add Dn.Value, Array(1, Dn.Offset(, 1))
                Else
                    Q = .Item(Dn.Value)
                    Q(0) = Q(0) + 1
                    Q(1) = Dn.Offset(, 1)
                    .Item(Dn.Value) = Q
                End If
        Next Dn
        End If
    Next Ws
    Dim K
    Dim c As Long
    c = 1
     For Each K In .keys
        c = c + 1
        Sheets("Final Data").Cells(c, 1) = K
        Sheets("Final Data").Cells(c, 2) = .Item(K)(0)
        Sheets("Final Data").Cells(c, 3) = Format(.Item(K)(1), "dd/mm/yyyy")
    Next K
    End With
    
    End Sub
    Regards Mick

  3. #3
    Registered User
    Join Date
    10-08-2013
    Location
    bangalore
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Find occurance with respect to count

    i wanted just excel formula .... no vba

+ 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. Replies: 1
    Last Post: 10-03-2013, 04:43 PM
  2. [SOLVED] How to compare two columns and find out the missing elements in one with respect to other
    By syedfahadjalali in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 03-08-2013, 10:46 PM
  3. [SOLVED] How to count Unique Number with respect to Date
    By amit.nikhil in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 08-29-2012, 02:17 AM
  4. [SOLVED] How to find out day with respect to date in other column
    By shaileshgavanang in forum Excel General
    Replies: 5
    Last Post: 06-19-2012, 02:56 PM
  5. consecutive value occurance count?
    By scuddy in forum Excel Programming / VBA / Macros
    Replies: 24
    Last Post: 04-23-2008, 08:08 AM

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