View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default Resume gridlines

I do not have an address/URL for MS Excel Developers.

Maybe someone else can point you to something.

While you're waiting for the Developers to make the upgrade, use this macro
whenever you need to add borders to colored cells.

Sub add_borders()
Dim r As Range
For Each r In ActiveSheet.UsedRange
If r.Interior.ColorIndex < xlNone Then
r.BorderAround , Weight:=xlThin
End If
Next r
End Sub


Gord

On Wed, 1 Oct 2008 09:23:52 +0800, "Scott"
wrote:

Gord,

Thanks for your pointing out it is shortcoming of Excel since the first
version. Is it impossible to address this issue? I have discussed with the
users who all have this concern and it seems Microsoft did not receive it so
far and never touch this area for improvement. Where can I submit it to
Excel development of Microsoft?

Regards,

Scott


"Gord Dibben" <gorddibbATshawDOTca ???
???...
As was pointed out to you.

Coloring the cells wipe out the gridlines.

You cannot get them back without setting background to "no color" or
"automatic".


Gord Dibben MS Excel MVP

On Tue, 30 Sep 2008 07:18:50 +0800, "Scott"
wrote:

Border is different from gridline. When I increase any column or row, I
have to format the border again but gridline is automatic.

Scott