fix double underline border toolbar in excel

G

Guest

The double underline toolbar, added to the toolbar by customizing it, doesn't
work. Please repair.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...d1ac732&dg=microsoft.public.excel.crashesgpfs
 
G

Guest

I agree, this is a very simple function which is most useful when it works.
Please fix ASAP
 
V

vandenberg p

You can do it yourself by putting the following macro in a code
module your personal.xls:

Sub Doubleline()
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = xlAutomatic
End With
End Sub

Now just customize the menu by adding a macro button and assigning
the macro to it.

You could edit macro to change the characteristics such as line
weight, style or color.

Pieter Vandenberg

: I agree, this is a very simple function which is most useful when it works.
: Please fix ASAP

: "llarsonathome" wrote:

:> The double underline toolbar, added to the toolbar by customizing it, doesn't
:> work. Please repair.
:>
:> ----------------
:> This post is a suggestion for Microsoft, and Microsoft responds to the
:> suggestions with the most votes. To vote for this suggestion, click the "I
:> Agree" button in the message pane. If you do not see the button, follow this
:> link to open the suggestion in the Microsoft Web-based Newsreader and then
:> click "I Agree" in the message pane.
:>
:> http://www.microsoft.com/office/com...d1ac732&dg=microsoft.public.excel.crashesgpfs
 

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

Top