View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Richard Choate Richard Choate is offline
external usenet poster
 
Posts: 42
Default Range.BorderAround(xlLineStyleNone)

Wat is the Call statement for? Why don't you use a With statement for a
defined range?
Richard Choate

"John A Grandy" wrote in message
...
for me, the following code does not remove any borders for any cells in the
range .....

For Each rCell In rTarget
Call rCell.BorderAround(xlLineStyleNone)
Next rCell

according to the xl2000 docs, this should work ...