Results 1 to 15 of 15

countif loop through range

Threaded View

  1. #1
    Forum Contributor
    Join Date
    04-12-2013
    Location
    Usually at work, in the UK
    MS-Off Ver
    Excel 2010
    Posts
    640

    countif loop through range

    I'm having trouble with my variable range for my countif.

    I am trying to loop through the range A4:A (bottom row based on Brow). one cell at a time (j) but I am having trouble setting the range for the countif.

    Can anyone suggest what I am doing incorrectly so I may recitfy the code?


    Sub checkPensionColumns()
    
    With ThisWorkbook.Sheets(3)
        Brow = .Range("A" & .Rows.Count).End(xlUp).Row
        BCol = .Cells(3, .Columns.Count).End(xlToLeft).Column
            Set BeforeRange = .Range(.Cells(4, 1), .Cells(Brow, BCol))
    End With
    
    Set myrange = BeforeRange
        For j = 4 To myrange.Rows.Count
        Debug.Print j
        Debug.Print Brow
            If Application.WorksheetFunction.CountIf(Sheets(3).Range("A4:A" & Brow), myrange.Range(A, j)) > 1 Then
                With ThisWorkbook.Sheets(2)
                    LRow = .Cells(.Rows.Count, 2).End(xlUp).Row + 1
                End With
                    ThisWorkbook.Sheets(2).Cells(LRow, 3).Value = myrange.Cells(j, 1).Address
            End If
        Next j
        
    MsgBox "Sub end"
    End Sub
    Last edited by Sc0tt1e; 11-02-2018 at 08:04 AM. Reason: added missing "]" on /code tag

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 4
    Last Post: 02-24-2017, 02:06 AM
  2. Populate Countif values (Offset) into Array and loop through it
    By mchilapur in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-16-2017, 05:55 AM
  3. [SOLVED] Loop Column reference in VBA Countif
    By jeffreybrown in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-14-2016, 10:53 PM
  4. Why is my nested countif loop wrong
    By falco008 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-22-2016, 06:07 AM
  5. COUNTIF-type loop with multiple logic requirements?
    By reagent in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-30-2013, 03:19 AM
  6. Why did an inner loop variable start overwriting the outer loop range suddenly?
    By 111StepsAhead in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-16-2012, 03:24 PM
  7. Combining a Date Range COUNTIF and a general COUNTIF
    By jacobtom in forum Excel General
    Replies: 1
    Last Post: 09-15-2011, 05:06 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