Thread: Condense Code
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Murray Murray is offline
external usenet poster
 
Posts: 29
Default Condense Code

Nigel

Try this - assuming the cells to have borders applied are already
selected.

With Selection.Borders
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With

Regards

Murray