Hi,
I would like to select the two first rows (cells) to set white font color and not the third (to keep black font color). This should be a loop to select enitre list.
How should I do that?
I would like to select the two first rows (cells) to set white font color and not the third (to keep black font color). This should be a loop to select enitre list.
How should I do that?
Code:
Sheets("PunktavvikHist").Range("BI58").Select
Do While ActiveCell.Value <> ""
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
ActiveCell.Offset(1, 0).Select
Loop