I'm collecting data on a form (array) and I want to add this data to the document as a table.
How would I go about doing that?
I'm using word 2003
Printable View
I'm collecting data on a form (array) and I want to add this data to the document as a table.
How would I go about doing that?
I'm using word 2003
Have a look at my post here for an example of how to build a table dynamically based on an array.
Thanks!
Bummer! Am I crazy or doesn't VBa support multiple dimension arrays?
I need 2 use a 2 dimensional array of type string.
Is this possible ?
You're crazy ;)
VBA does support multidimensional arrays.
VB Code:
Dim asMultiDim(0 To 9, 0 To 99) As String
Thanks,
though I started working on a solution using two single dimension arrays ...
Sammy
Don't forget to mark this thread as resolved if your question has been answered.
Yes, I will, sorry
As a comment:
What's vba clumsy compared to .net. Ugh!