'How do I apply bullets to a table column in word using VBA?

I have applied bullets to a row without difficulty using

myDoc.Tables(1).Rows(3).Range.ListFormat.ApplyBulletDefault

but when I try something similar with

myDoc.Tables(1).Columns(4).Range.ListFormat.ApplyBulletDefault

I get the error method or data member not found with "Range" highlighted in vba.

I'm sure I'm missing something straightforward, but any suggestions would be great.



Solution 1:[1]

Okay, I've settled on two lines of code as follows in case this come up for anyone else:

myDoc.Tables(1).Columns(4).Select
myDoc.ActiveWindow.Selection.Range.ListFormat.ApplyBulletDefault

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sean-Anthony Sutherland