E
ExcelMonkey
I have inserted a table:
MyApp.ActiveDocument.Tables.Add Range:=MyApp.Selection.Range, numrows:=5,
numcolumns:=5
How do I pass this table to an object variable using the Set stmt?
Set objTable = MyApp.Table(1) does not work.
Thanks
EM
MyApp.ActiveDocument.Tables.Add Range:=MyApp.Selection.Range, numrows:=5,
numcolumns:=5
How do I pass this table to an object variable using the Set stmt?
Set objTable = MyApp.Table(1) does not work.
Thanks
EM