Change / Remove Border from ActiveCell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to supress the black border around the active cell in my workbook.
At a minimum I would like it to appear as White. I've been poking around
the board and can not find a solution. Any help would be appreciated.

VBA Novice FYI

Private Sub Workbook_Open()
ActiveCell.BorderAround LineStyle:=xlLineStyleNone
End Sub
 
The Borders properties and the BorderAround method has nothing whatsoever to
do with the range selection border that marks the selected cell(s). As far
as I know, you cannot turn off the selection border and still be able to
select cells.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top