+ Reply to Thread
Results 1 to 9 of 9

how to make it count correctly?

  1. #1
    Registered User
    Join Date
    09-12-2006
    Posts
    13

    how to make it count correctly?

    this loop should count every event in the G column that meets the criteria. When the entry in the E column meets the exact day and 0<x<70000 criteria and the entry in the G column meets the <=40000 criteria the countsno4 should be incremented, and it is, but not correctlly. any sugdestions how to correct it?


    For Each cell In WS.Range("E2", Range("E1000").Address)

    If cell.Value <> "" And Len(cell.Value) > 0 Then

    convert = Format(cell.Value, "yyyy-mm-dd hh:mm:ss")

    DateofEntry = Left(convert, 19)
    TimeofEntry = Replace((Right(convert, 9)), ":", "")

    convert = Format(cell.Offset(0, 2).Value, "hh:mm:ss")
    start = Replace(convert, ":", "")

    If Weekday(DateofEntry, vbMonday) < 6 And TimeofEntry >= 0 And TimeofEntry <= 70000 And start <= 40000 Then countsno4 = countsno4 + 1

    Else: End If

    Next cell

  2. #2
    Forum Contributor stevebriz's Avatar
    Join Date
    09-07-2006
    Location
    Santiago Chile
    Posts
    389
    your date of entry will give you nothing
    DateofEntry = Left(convert, 19)

    try
    DateofEntry = Left(convert, 10)
    VBA - The Power Behind the Grid

    Posting a sample of your workbook makes it easier to look at the Issue.

  3. #3
    Registered User
    Join Date
    09-12-2006
    Posts
    13
    hi Steve! you probably noticed its a modified version of macro you've helped me to create a while ago. the DateofEntery works just fine. the problem is in the incrementation of the countsno4. it counts to much. I have 54 enteries but it counts 92...

  4. #4
    Forum Contributor stevebriz's Avatar
    Join Date
    09-07-2006
    Location
    Santiago Chile
    Posts
    389
    Are you able to email me you xls ...so I can find the problem?

  5. #5
    Registered User
    Join Date
    09-12-2006
    Posts
    13
    hi there. i managed to make the loop to work correctly. now the only problem is
    For Each cell In WS.Range("E2", Range("E1000").Address)
    line. i need to make this loop count every cell in the E column that has an entry, not only the fixed range (2-1000). Any ideas?

  6. #6
    Forum Contributor stevebriz's Avatar
    Join Date
    09-07-2006
    Location
    Santiago Chile
    Posts
    389
    Do you jsut want to do it to the last used cell in the column? then use this:

    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    09-12-2006
    Posts
    13
    it doesn't work wright. in the next loop (the same, only for another criteria) it starts from the E1 cell and then I get a type mismatch error.

  8. #8
    Forum Contributor stevebriz's Avatar
    Join Date
    09-07-2006
    Location
    Santiago Chile
    Posts
    389
    can you email me the xls?

  9. #9
    Registered User
    Join Date
    09-12-2006
    Posts
    13
    sorry for my late reply. I've used the most sinple soulution:

    next13:
    For Each cell In WS.Range("E2", Range("E10000").Address)
    'all events

    If cell.Value <> "" And Len(cell.Value) > 0 Then

    countall = countall + 1

    Else: GoTo next14
    End If
    Next cell

    next14:
    For Each cell In WS.Range("G2", Range("G10000").Address)
    'all events <= 4h

    If cell.Value <> "" And Len(cell.Value) > 0 Then

    conventry = Format(cell.Value, "hh:mm:ss")
    Duration = Replace(conventry, ":", "")

    If Duration <= 40000 Then countall4 = countall4 + 1

    Else: GoTo next15
    End If
    Next cell

    next15:
    the macro jumps out of the loop with the "go to" instruction when the next checked cell is empty. Thanks for all Your help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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