C
Claudine
Hi all,
You were all kind enough to help me with a macro a few
weeks ago. Now I've had my team come back and ask me if
there is a way I can have the cursor land in a particular
cell. The tables are very simple and two columns. Right
now, here is one of the macros:
Sub InsertBulletPullout()
Dim InsideTable As Boolean
InsideTable = False
Application.ScreenUpdating = False
With Selection
If .Information(wdWithInTable) Then
.SelectRow
.MoveDown Unit:=wdLine, Count:=1
If .Information(wdWithInTable) Then
.SplitTable
InsideTable = True
End If
End If
End With
ActiveDocument.AttachedTemplate.AutoTextEntries
("Bullets").Insert Where:= _
Selection.Range, RichText:=True
If InsideTable Then Selection.Delete
Application.ScreenRefresh
Application.ScreenUpdating = False
End Sub
Is there a way to have the cursor land in either the
right or left column?
Thank you in advance,
Claudine
You were all kind enough to help me with a macro a few
weeks ago. Now I've had my team come back and ask me if
there is a way I can have the cursor land in a particular
cell. The tables are very simple and two columns. Right
now, here is one of the macros:
Sub InsertBulletPullout()
Dim InsideTable As Boolean
InsideTable = False
Application.ScreenUpdating = False
With Selection
If .Information(wdWithInTable) Then
.SelectRow
.MoveDown Unit:=wdLine, Count:=1
If .Information(wdWithInTable) Then
.SplitTable
InsideTable = True
End If
End If
End With
ActiveDocument.AttachedTemplate.AutoTextEntries
("Bullets").Insert Where:= _
Selection.Range, RichText:=True
If InsideTable Then Selection.Delete
Application.ScreenRefresh
Application.ScreenUpdating = False
End Sub
Is there a way to have the cursor land in either the
right or left column?
Thank you in advance,
Claudine