Consulting

Results 1 to 2 of 2

Thread: Countifs syntax (beginner question)

  1. #1
    VBAX Regular
    Joined
    Mar 2013
    Posts
    80
    Location

    Countifs syntax (beginner question)

    C_Ids C_Dat C_Obj C_Key C_Tot Expected
    1 01/01/2013 A
    1 01/03/2013 A
    1 01/01/2014 D D-A Not counting 1
    2 01/01/2012 A
    3 01/01/2012 D
    3 01/03/2013 E E-D Not counting 2
    3 01/01/2014 D D-E Not counting 2
    4 01/01/2014 A
    4 01/12/2014 D D-A Not counting 1


    I'm having a problem to understand how countifs works, and Internet gives me different syntax. [from memory: either (range, criteria 1, criteria n) or (range1, criteria1, range n ,criteria n) ]


    I'm trying to count in C_Tot for each employee (C_Ids) the number of non empty columns in C_Keys


    For i = 3 To Endlign
        Cells(i, C_Tot) = ""
        My_Count = 0
        If Cells(i, C_Key) <> "" Then
        
           My_Count = Application.CountIfs(Range(Cells(2, C_Key), Cells(Endlign, Ids)), Cells(i, C_Ids) = Cells(i - 1, C_Ids))       
           If My_Count > 0 Then
              Cells(i, C_Tot) = My_Count
              Else
                Cells(i, C_Tot) = "Not counting"
           End If
        End If
    Next i
    Thanks in advance for your precious and so much appreciated help

  2. #2
    VBAX Guru mancubus's Avatar
    Joined
    Dec 2010
    Location
    "Where I lay my head is home" :D
    Posts
    2,644
    what is wrong with the previous thread of yours on the same subject?

    http://www.vbaexpress.com/forum/show...inner-question
    PLS DO NOT PM; OPEN A THREAD INSTEAD!!!

    1) Posting Code
    [CODE]PasteYourCodeHere[/CODE]
    (or paste your code, select it, click # button)

    2) Uploading File(s)
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) (multiple files can be selected while holding Ctrl key) / Upload Files / Done
    Replace company specific / sensitive / confidential data. Include so many rows and sheets etc in the uploaded workbook to enable the helpers visualize the data and table structure. Helpers do not need the entire workbook.

    3) Testing the Codes
    always back up your files before testing the codes.

    4) Marking the Thread as Solved
    from Thread Tools (on the top right corner, above the first message)

Posting Permissions

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