I'm trying to insert a line break into a table cell. So far I've been trying to manipulate the range of the cell, but am either getting errors or causing my text to go into subsequent rows or outside of the table.

How would I insert a line break into a table cell?

(Using macros, there is apparently a way to do it with Selection, but I'd rather avoid that if possible)

(Things I have that don't work: range.InsertParagrah, range.InsertParagraphAfter, range.Text = "\r\n", range.InsertBreak(wdLineBreak))

link|improve this question

What have you got that isn't working? – Eddy Aug 16 '11 at 18:31
feedback

2 Answers

up vote 1 down vote accepted

This works in Word 2010, you'll need to have the correct cell etc. selected:

Selection.TypeText Text:=Chr(11)

/edit/

How about this? Forgive the use of Selection to get the range, I know you don't like it but it was the quickest way for me to test. You can use your own way to get the range.

Sub Macro3()

Dim oRange As Range
    ' Add your own range selection code here!
    Set oRange = Selection.Range
    oRange.InsertAfter (Chr(11))


End Sub
link|improve this answer
This is what I plan to resort to if there aren't better solutions, but I'd much rather not mess with Selections if at all possible. Still, it's a solution – Jamie Aug 16 '11 at 19:02
Strangely, both of them cause the remaining output to be outputted in the next row or outside of the table. – Jamie Aug 17 '11 at 12:19
Actually, it turns out that this works, and a whole bunch of other things work. I was just accidentally looking at another character (I think the row-ending character or paragraph-ending character) that caused errors. Basically I used to have "range = cell.Range" but I had to add the line "range.SetRange(range.Start, range.End - 1)". note to self: learn to read documentation... – Jamie Aug 17 '11 at 15:22
feedback

Try shift+enter - i think that does the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.