Y
Yarroll
Hello,
What's the best way to delete rows on the basis of cell's font?
I'm running the following macro, but with large workbooks it takes forever
to complete :-((
Thanks. Best Regards
Yarroll
Dim k As Long, howm As Long
howm = WorksheetFunction.CountA(ActiveSheet.Range("N:N"))
For k = howm To 2 Step -1
If Cells(k, 12).Font.Bold = False Then
Rows(k).Delete
End If
Next
End sub
What's the best way to delete rows on the basis of cell's font?
I'm running the following macro, but with large workbooks it takes forever
to complete :-((
Thanks. Best Regards
Yarroll
Dim k As Long, howm As Long
howm = WorksheetFunction.CountA(ActiveSheet.Range("N:N"))
For k = howm To 2 Step -1
If Cells(k, 12).Font.Bold = False Then
Rows(k).Delete
End If
Next
End sub