bluepenink
Well-known Member
- Joined
- Dec 21, 2010
- Messages
- 585
Hello
How can i define with the macro below to show "white font" for the specified range?
obv i have chunked out some coding...thx u guys!
How can i define with the macro below to show "white font" for the specified range?
Code:
With Range("C3:O3")
With .Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 10027008
End With
.BorderAround LineStyle:=xlContinuous, _
ColorIndex:=0, _
Weight:=xlThin
.Font.Bold = True
End With
End If
End With
Application.ScreenUpdating = True
End Sub
obv i have chunked out some coding...thx u guys!
Last edited: