Hi guys,
here's my problem:
I must copy some cells that are not adjacent one to another located in column A, to column F.
With my sub I search for every cell that is font.bold = true, and once fuond i must copy it in cell F1, than the next cell found with font.bold=true in F2 and so on...
Hope someone could help...I'm breackin' my head!!!
Sub EliminaDuplicati2()
With Worksheets(1).Range([A2], [A2].End(xlDown)).Select
For Each c In Selection
If c.Font.Bold = True Then
c.Resize(1, 4).Select
Selection.Copy
'and now????
End If
Next
End With
End Sub