![]() |
with, end with format
greetings, simple question, if i have following code:
Range("b2:c12").Select With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideHorizontal) .LineStyle = xlContinuous .Weight = xlHairline .ColorIndex = xlAutomatic End With is there way i can apply LineStyle, Weight, ColorIndex options to each border with one With, End With statement (or some other way where don't have to repeat lines? |
with, end with format
How about this...
With Range("B2:C12") .BorderAround LineStyle:=xlContinuous, Weight:=xlMedium With .Borders(xlInsideHorizontal) .LineStyle = xlContinuous .Weight = xlHairline End With End With -- HTH... Jim Thomlinson "mwam423" wrote: greetings, simple question, if i have following code: Range("b2:c12").Select With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlMedium .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideHorizontal) .LineStyle = xlContinuous .Weight = xlHairline .ColorIndex = xlAutomatic End With is there way i can apply LineStyle, Weight, ColorIndex options to each border with one With, End With statement (or some other way where don't have to repeat lines? |
with, end with format
hi jim, that foots the bill nicely =D
|
All times are GMT +1. The time now is 09:29 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com