Trying to write simple 2d array of integers to xml file using "Flatten to XML" and "Write to XML".
Can't understand, why does it make 1d array out of 2d?
i.e. for example array like this:
11 | 12 | 13 |
21 | 22 | 23 |
31 | 32 | 33 |
turns in xml file (opened by MS Excel) into something like this:
11 |
12 |
13 |
21 |
22 |
23 |
31 |
32 |
33 |
How to make it write each column to the right place?