Double Underline cells in PowerPoint 2007 tables

D

DianeG

I'm trying to double underline a cell in a table in PowerPoint 2007. I can't
find an option to do it, either by drawing it or using the borders tool. Has
this facility been removed?

Thanks in advance

Diane
 
D

DianeG

Thank you for your response but I still can't find the double underline,
sorry to be a pain, can you tell me where it is please?

Regards

Diane
 
M

Michael Koerner

Select the text you want to double underline On the home tab in the font
group click underline at the bottom right of the font group, you will see a
down to the right arrow. click on it and in the underline style, select
double.

--
Michael Koerner
MS MVP - PowerPoint


Thank you for your response but I still can't find the double underline,
sorry to be a pain, can you tell me where it is please?

Regards

Diane
 
D

DianeG

Ah, I see what you mean. I was actually wanting to double underline the
cell itself not the contents, can you do this?
 
E

Echo S

I don't think this has been removed -- I don't think it ever existed in the
first place. If it did, I sure cannot find it. I cannot see a way to add a
double line as a border to a table in either PPT 2007 or 2003.
 
D

DianeG

No there aren't any toolbars in 2007 (except the quick access toolbar)

Thanks for your responses guys

Diane
 
E

Echo S

But when you select the table, the Table Tools tabs (Design and Layout) do
become available.
 
C

Chris Pounds

If you have a cell with a double underline in Excel and paste it into PowerPoint 2007, you can create the double underline effect.

So, take your table from PowerPoint, paste it into Excel. Add the double underlines as appropriate, then delete the original table in PPTx and paste the new table from Excel.



Diane wrote:

No there aren't any toolbars in 2007 (except the quick access toolbar)Thanks
21-Oct-08

No there are not any toolbars in 2007 (except the quick access toolbar

Thanks for your responses guy

Dian

:

Previous Posts In This Thread:

Double Underline cells in PowerPoint 2007 tables
I'm trying to double underline a cell in a table in PowerPoint 2007. I can't
find an option to do it, either by drawing it or using the borders tool. Has
this facility been removed?

Thanks in advance

Diane

Re: Double Underline cells in PowerPoint 2007 tables
This should help.
http://office.microsoft.com/en-us/powerpoint/HA100742261033.asp

--
Michael Koerne
MS MVP - PowerPoin

I'm trying to double underline a cell in a table in PowerPoint 2007. I can'
find an option to do it, either by drawing it or using the borders tool.
Ha
this facility been removed

Thanks in advanc

Diane

Thank you for your response but I still can't find the double underline, sorry
Thank you for your response but I still cannot find the double underline
sorry to be a pain, can you tell me where it is please

Regard

Dian

:

Select the text you want to double underline On the home tab in the font group
Select the text you want to double underline On the home tab in the font
group click underline at the bottom right of the font group, you will see a
down to the right arrow. click on it and in the underline style, select
double

--
Michael Koerne
MS MVP - PowerPoin

Thank you for your response but I still can't find the double underline
sorry to be a pain, can you tell me where it is please

Regard

Dian

:

Ah, I see what you mean.
Ah, I see what you mean. I was actually wanting to double underline th
cell itself not the contents, can you do this

:

I don't think this has been removed -- I don't think it ever existed in the
I don't think this has been removed -- I don't think it ever existed in the
first place. If it did, I sure cannot find it. I cannot see a way to add a
double line as a border to a table in either PPT 2007 or 2003

--
Echo [MS PPT MVP] http://www.echosvoice.co
What's new in PPT 2007? http://www.echosvoice.com/2007.ht
Fixing PowerPoint Annoyances http://tinyurl.com/36grc
PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7n


In 2003 you can use the 'line' tool to draw a line inside the cell.
In 2003 you can use the 'line' tool to draw a line inside the cell. Isn'
that toolbar visible at the bottom of the screen in 2007

Brian.

No there aren't any toolbars in 2007 (except the quick access toolbar)Thanks
No there are not any toolbars in 2007 (except the quick access toolbar

Thanks for your responses guy

Dian

:

But when you select the table, the Table Tools tabs (Design and Layout) do
But when you select the table, the Table Tools tabs (Design and Layout) do
become available.

--
Echo [MS PPT MVP] http://www.echosvoice.com
What's new in PPT 2007? http://www.echosvoice.com/2007.htm
Fixing PowerPoint Annoyances http://tinyurl.com/36grcd
PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx




Submitted via EggHeadCafe - Software Developer Portal of Choice
LINQ With Strings
http://www.eggheadcafe.com/tutorial...47db-adb9-db7fe2c6ab8c/linq-with-strings.aspx
 
Joined
Oct 27, 2014
Messages
2
Reaction score
0
Diane, I use PowerPoint 2000; to double underline a selected word, I have a macro created! This is the code I use, which can be used to double underline the selected word, and to remove the double underline too; but I have found that if you use it to remove the double underlines after using it to double underline selected words on the powerpoint slide that it will remove the double underlines of all of the words on the slide that you use it to put double underlines underneath! Yet, it works otherwise; perhaps, someone can fix the un-double underlining portion to just un-doubleunderline only the current selected one on the powerpoint slide!

This is the code:

Sub DoubleUnderline()

Dim oRng As TextRange
Dim lLineCount As Long
Dim oLine As Shape
Dim dOffset As Double

dOffset = 2 ' space between underlines in points
' change if you like

With ActiveWindow.Selection.TextRange
For lLineCount = 0.5 To .Lines.Count
Set oRng = .Lines(lLineCount)
With oRng
Set oLine = ActiveWindow.Selection.SlideRange.Shapes.AddLine( _
.BoundLeft, .BoundTop + .BoundHeight, _
.BoundLeft + .BoundWidth, .BoundTop + .BoundHeight)
Call oLine.Tags.Add("Underline", "YES")
With oLine.Duplicate(1)
.Left = oLine.Left
.Top = oLine.Top + dOffset
Call .Tags.Add("Underline", "YES")
End With
End With
Next
End With

End Sub

Sub UnUnderline()
' Removes underlines added by DoubleUndies

Dim oSh As Shape
Dim x As Long

With ActiveWindow.Selection.SlideRange(1)
For x = .Shapes.Count To 1 Step -1
Set oSh = .Shapes(x)
If oSh.Tags("Underline") = "YES" Then
oSh.Delete
End If
Next
End With
End Sub
 
Joined
Oct 27, 2014
Messages
2
Reaction score
0
Diane, I use PowerPoint 2000; to double underline a selected word, I have a macro created! This is the code I use, which can be used to double underline the selected word, and to remove the double underline too; but I have found that if you use it to remove the double underlines after using it to double underline selected words on the powerpoint slide that it will remove the double underlines of all of the words on the slide that you use it to put double underlines underneath! Yet, it works otherwise; perhaps, someone can fix the un-double underlining portion to just un-doubleunderline only the current selected one on the powerpoint slide!

This is the code:

Sub DoubleUnderline()

Dim oRng As TextRange
Dim lLineCount As Long
Dim oLine As Shape
Dim dOffset As Double

dOffset = 2 ' space between underlines in points
' change if you like

With ActiveWindow.Selection.TextRange
For lLineCount = 0.5 To .Lines.Count
Set oRng = .Lines(lLineCount)
With oRng
Set oLine = ActiveWindow.Selection.SlideRange.Shapes.AddLine( _
.BoundLeft, .BoundTop + .BoundHeight, _
.BoundLeft + .BoundWidth, .BoundTop + .BoundHeight)
Call oLine.Tags.Add("Underline", "YES")
With oLine.Duplicate(1)
.Left = oLine.Left
.Top = oLine.Top + dOffset
Call .Tags.Add("Underline", "YES")
End With
End With
Next
End With

End Sub

Sub UnUnderline()
' Removes underlines added by DoubleUndies

Dim oSh As Shape
Dim x As Long

With ActiveWindow.Selection.SlideRange(1)
For x = .Shapes.Count To 1 Step -1
Set oSh = .Shapes(x)
If oSh.Tags("Underline") = "YES" Then
oSh.Delete
End If
Next
End With
End Sub
I found the Macro at this website, and since they will not let me put the website link I will
say I found it at www dot pptfaq dot com backslash FAQ00775 Underscore text Underscore dot htm rightbracket url leftbracket

That site has it for people to freely use it; but,
I did change the dOFFSET = value to 2 though instead of the 4 that is on that websites code shown for doing it!
 

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