Hi All, I have two columns in sheet1 with multiple rows and the same columns in sheet2 but in sheet2 values of 2nd column becomes column headings, I want to highlight the cell in sheet2 where values match from sheet1. Thanks in advance, i hope it makes clear. Screenshots also attached. i write the following code but this is not working correctly. Thanks for you help
Public Sub test3()
Dim rng As Range
Dim aNumber As Range
Dim bNumber As Range
Dim rng2 As Range
Dim LastColumn As Long
Dim iRow As Long
Dim iCol As Long
Set rng = Sheets("Sheet2").Range("B2:B" & Range("B" & Rows.Count).End(xlUp).row)
LastColumn = Sheets("Sheet2").Range("D1").CurrentRegion.Columns.Count
Set rng2 = Sheets("Sheet2").Range(Cells(1, 1), Cells(1, LastColumn))
'MsgBox rng2.Address
For iRow = 2 To 6 'this i need last row count
For iCol = 2 To 6 ''this i need last row count
Set aNumber = Sheets("Sheet1").Cells(iRow, 1) 'Row, Column Searching A
Set bNumber = Sheets("Sheet1").Cells(iCol, 2) 'Row, Column Searching B
If Application.WorksheetFunction.CountIf(rng, aNumber) > 0 Then
If Application.WorksheetFunction.CountIf(rng2, bNumber) > 0 Then
ColNum = Application.WorksheetFunction.Match(bNumber, rng2, 0)
RowNum = Application.WorksheetFunction.Match(aNumber, rng, 0)
'MsgBox (RowNum + 1)
'MsgBox (ColNum)
Sheets("Sheet2").Cells(RowNum + 1, ColNum).Interior.Color = vbGreen
Else
'MsgBox aNumber & " does not exist in range " & rng.Address
End If
End If
Next iCol
Next iRow
End Sub
Language 2 | Jave
? Or indeedLanguage 1 | Jave
? – BruceWayneSheet1
, the first for theLanguage 1
,Language 2
, etc list (I named itlistLanguageHeaderA
and the second for the theJava
,Jave
, etc list (I named itlistLanguageHeaderB
). Then use this conditional format formula in cell B2 onSheet2
:=COUNTIFS(listLanguageHeaderA,$A2,listLanguageHeaderB,B$1)>0
and apply the conditional formatting to range:=$B$2:$G$7
– tigeravatar