I am working on a macro that, among other thing, will need a table. I am testing a macro currently but cannot figure out how to exit the table. I tried the answer from here but it didn't work. I think I must be missing something.
`
Sub Macro2()
'
With Selection
.TypeText Text:="paragraph 1"
.TypeParagraph
.TypeText Text:="paragraph 2"
.TypeParagraph
ActiveDocument.Tables.Add Range:=.Range, NumRows:=4, NumColumns:= _
2, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
wdAutoFitFixed
With .Tables(1).Range
For x = 1 To 8
.Cells(x).Width = 180
Next
End With
' .Tables(1).Borders.Enable = False
CellFormat
.TypeText Text:="Sundance Senior Services"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="Bella Pregnancy Center"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="Compassion International"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="Far Reaching Ministries"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="The Ram Center"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="Jail/Prison Ministries"
.MoveRight Unit:=wdCell
CellFormat
.TypeText Text:="Funeral Services"
.TypeParagraph
.TypeText Text:="paragraph 3"
End With
End Sub
Sub CellFormat()
ListGalleries(wdBulletGallery).ListTemplates(1).Name = ""
Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:= _
ListGalleries(wdBulletGallery).ListTemplates(1), ContinuePreviousList:= _
False, ApplyTo:=wdListApplyToWholeList, DefaultListBehavior:= _
wdWord10ListBehavior
End Sub
Thank you so much
I tried using the solution in the referenced post which is: `
Dim rngTable as Word.Range
Set rngTable = tbl.Range
rngTable.Collapse Word.WdCollapseDirection.wdCollapseEnd
` just before the type paragraph and "paragraph 3" text.
It didn't help. It still put the text in the cell where "Funeral Services" is.
Here is an alternative solution for you which avoids the shenanigans of a bookmark