I want to use the value of the last row found into a range using For Each...In [A:A]...in other words I want the range to stop at the last cell w/content in it...
'***Find last row
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
'***Modify Data In Cells
For Each nb In [A:A] or LastRow.Rows
If nb.Value Like "*description *" Then
nb.Cells.Font.Bold = True
End If
Next nb
I want the loop to stop at the last row it found...then it moves to the next part of the code...
'***Find last row
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
'***Modify Data In Cells
For Each nb In [A:A] or LastRow.Rows
If nb.Value Like "*description *" Then
nb.Cells.Font.Bold = True
End If
Next nb
I want the loop to stop at the last row it found...then it moves to the next part of the code...