for loop

montecarlo2012

Well-known Member
Joined
Jan 26, 2011
Messages
984
Office Version
  1. 2010
Platform
  1. Windows
Hi.
I Hope to be lucky and get some help
VBA Code:
Sub D_M()
      Dim X As Range, Y As Range
            For Each X In Range("B2:F2")
                  Set Y = Range("M2:M37").Find(X, LookIn:=xlValues, lookat:=xlWhole)
                           If Not Y Is Nothing Then
                                     Y.Interior.ColorIndex = 6
                           End If
            Next X
End Sub

Sub D_N()
      Dim X As Range, Y As Range
            For Each X In Range("B3:F3")
                  Set Y = Range("N2:N37").Find(X, LookIn:=xlValues, lookat:=xlWhole)
                           If Not Y Is Nothing Then
                                     Y.Interior.ColorIndex = 6
                           End If
            Next X
End Sub
Sub D_o()
      Dim X As Range, Y As Range
            For Each X In Range("B4:F4")
                  Set Y = Range("O2:O37").Find(X, LookIn:=xlValues, lookat:=xlWhole)
                           If Not Y Is Nothing Then
                                     Y.Interior.ColorIndex = 6
                           End If
            Next X
End Sub
I upload this just to illustrate the logic I am trying
I want to read my array B2:F64 and match the M2:AZ37
I think the 3 codes make more sence
read B2:F2 and check if on Column M there are matches and highlight them
read B3:F3 and check if on column N there are matches and hightlight them
etc.
so I tried this
VBA Code:
Sub MatchAndHighlight()
    Dim i As Long, j As Long
    Dim X As Range, Y As Range
    Dim col As String
    
    For i = 2 To 34
        For j = 13 To 25
            
            
            For Each X In Range("B" & i & ":F" & i)
                Set Y = Range(col & "m:" & col & "bb").Find(X, LookIn:=xlValues, lookat:=xlWhole)
                If Not Y Is Nothing Then
                    Y.Interior.ColorIndex = 6
                End If
            Next X
        Next j
    Next i
End Sub
but is working completely wrong
some help would be nice
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi there...

Maybe try...

It looks like the issue in your MatchAndHighlight code is that you're not setting the col variable to the correct column letter. You could modify your code like this to loop through each column from M to AZ, and check for matches with each cell in the B2:F64 range:

VBA Code:
Sub MatchAndHighlight()
    Dim i As Long, j As Long
    Dim X As Range, Y As Range
    Dim col As String
    
    For i = 2 To 34
        For j = 13 To 52 ' loop through columns M to AZ
            
            col = Split(Cells(1, j).Address, "$")(1) ' get the column letter
            
            For Each X In Range("B" & i & ":F" & i)
                Set Y = Range(col & "2:" & col & "37").Find(X, LookIn:=xlValues, lookat:=xlWhole)
                If Not Y Is Nothing Then
                    Y.Interior.ColorIndex = 6
                End If
            Next X
        Next j
    Next i
End Sub



This code should loop through each cell in the B2:F64 range, and for each cell, search for a match in the corresponding column from M2 to AZ37. If a match is found, the cell in the M2:AZ37 range is highlighted in yellow.

Note that this code assumes that your data is laid out in a specific way, with the B2:F64 range and the M2:AZ37 range being the same size, and with the first row of the M2:AZ37 range containing the column headers. If your data is laid out differently, you may need to modify the code accordingly.
 
Upvote 1
Solution
Hi there.. Glad you got right and that we could assist and thanks for the feedback...
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,970
Members
449,095
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top