View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_5_] Jim Thomlinson[_5_] is offline
external usenet poster
 
Posts: 486
Default Concise border removal method

Range("E6:C10").Borders.LineStyle = xlLineStyleNone
--
HTH...

Jim Thomlinson


"XP" wrote:

Hello, I am using Office 2003 on Windows XP.
I am trying to come up with a concise way of removing all borders from a
range of cells. Something like the following, but this generates an error:

[C6..E10].BorderAround LineStyle:=xlLineStyleNone

I'd really rather not have to individually set every single border to none.
But, is that the only way? Could someone please post an easier method?

Thanks much in advance.