G
Guest
Newbie looking for some help..
I have a spreadsheet of unknown row length. I have a macro which uses various logic statements to format, sort and qualify row items. Problem rows contain cells formatted in a yellow color when suspicious data appears
I need a method to delete rows which have only all white interior cells formatting, thus leaving any row with at least one yellow formatted cell.
I use the following technique for most of the conditional actions
Dim s As Lon
With Worksheets("Jobs"
For s = .UsedRange.Rows.Count To 2 Step -
If .Cells(s, "B").Value <> "#104" Then .Rows(s).Delet
Nex
End Wit
Any suggestions are appreciated
Thanks
I have a spreadsheet of unknown row length. I have a macro which uses various logic statements to format, sort and qualify row items. Problem rows contain cells formatted in a yellow color when suspicious data appears
I need a method to delete rows which have only all white interior cells formatting, thus leaving any row with at least one yellow formatted cell.
I use the following technique for most of the conditional actions
Dim s As Lon
With Worksheets("Jobs"
For s = .UsedRange.Rows.Count To 2 Step -
If .Cells(s, "B").Value <> "#104" Then .Rows(s).Delet
Nex
End Wit
Any suggestions are appreciated
Thanks