NicholasP
Active Member
- Joined
- Nov 18, 2006
- Messages
- 291
Code:
Range("L20").Select
With Selection.Interior 'RED
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Is there a simpler way to reduce the above code to something like the below code? I've played around a bit with this, but I was wondering if someone had an answer offhand.
Code:
Range("L20").Interior.ColorIndex = 4
I appreciate any assistance!
Thanks
Nick