Dennis Reynolds
New Member
- Joined
- Jul 12, 2011
- Messages
- 9
I have the general idea on how to do it I just don't know the language for it. I need the borders, indents, font size, and font format to change for various cells. My idea is to create a few format cases and then create a format array with the case names being the entries. Am I on the right path here? My format conditions are below.
With Selection
.IndentLevel = 0
End With
With Selection.Font
.FontStyle = "Standard"
.Size = 10
End With
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlHairline
End With
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlHairline
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlHairline
End With