L
lovetabike
I'm using the following to create a table.
Set tblNew = docActive.Tables.Add( _
Range:=docActive.Range(Start:=0, End:=0), NumRows:=2, _
NumColumns:=3)
How do I change the location of the table? If I put values in Start and End
I get an app error, value out of range. I used 5 for both Start and End.
Set tblNew = docActive.Tables.Add( _
Range:=docActive.Range(Start:=0, End:=0), NumRows:=2, _
NumColumns:=3)
How do I change the location of the table? If I put values in Start and End
I get an app error, value out of range. I used 5 for both Start and End.