Transparency for interior color?

  • Thread starter Thread starter reloader
  • Start date Start date
R

reloader

Hi all,

I would like to ask you about, how can I do(if it's possible), that the
interior color will be transparent where it's in connection with the
gridlines?? (Like when I select some cells)

So I want, that the gridlines don't disappeare when I get an interior
color for the cells.

Thanks
 
then add the gridlines with the borders icon or a macro using borders

Sub borderoneline()
Selection.Borders.LineStyle = xlContinuous
End Sub
 
Back
Top