Hi Tod,
Thank for your reply. I modified your code a little to do
something a little differently and it works fine. I
modified it to select some different cells from what I
asked to begin with and copy them. One thing I would like
it to do is to copy ALL of the cells that meet
our "search" criteria. Currently it copies the LAST cells
in the range that meet the "search" criteria.
The new code:
Sub TEST2()
Set SearchRange = Range("F2:F" & Range("F65536").End
(xlUp).Row)
For Each Cell In SearchRange
If Len(Cell.Value) > 0 And _
Cell.Value <> "Size" And _
Cell.Value <> "Grand Total" Then
If Cell.Font.Bold = True Then
Range(Cell.Offset(0, 0).Address & ":" &
Cell.Offset(0, -1).Address).Copy
End If
End If
Next Cell
End Sub
Any advice would be appreciated,
Todd