View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Shahin Musayev Shahin Musayev is offline
external usenet poster
 
Posts: 18
Default Font.Bold Property slows down macro

Thanx for your reply, Jon. Here is the code:


With wshRNSheet.Range("A1:F1")

.Font.Bold = True 'this line is
reason for delay

With .Interior
.Color = RGB(166, 202, 240)
.Pattern = xlSolid
End With

.Borders(xlDiagonalDown).LineStyle = xlNone
.Borders(xlDiagonalUp).LineStyle = xlNone

With .Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

With .Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

With .Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

With .Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

With .Borders(xlInsideVertical)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

End With 'wshRNSheet.Range("A1:F1")