Give this a shot
Option Explicit
Sub abc()
Dim LastRow As Long, LastCol As Long
Dim rng As Range, rng2 As Range
Dim Cell As Range, Cell2 As Range
Dim RangeToBold As Range
LastRow = Cells(Rows.CountLarge, "a").End(xlUp).Row
LastCol = Cells(1, Columns.CountLarge).End(xlToLeft).Column
Set rng = Range("a2:a" & LastRow)
Set rng2 = Range(Cells(2, 2), Cells(LastRow, LastCol))
For Each Cell In rng
For Each Cell2 In rng2
If Cell = Cell2 Then
If RangeToBold Is Nothing Then
Set RangeToBold = Range(Cell2.Address)
Else
Set RangeToBold = Union(RangeToBold, Range(Cell2.Address))
End If
End If
Next
Next
If Not RangeToBold Is Nothing Then
RangeToBold.Font.Bold = True
End If
Set rng = Nothing
Set rng2 = Nothing
Set Cell = Nothing
Set Cell2 = Nothing
Set RangeToBold = Nothing
End Sub
Bookmarks