I have a program that generates a lot of data (statistics from my simulation) and since it is multi-dimensional data, I felt that an XML file would be a smart way to store it (and somewhat portable). I particular a single XML file stores multiple Statistics for each run. the value is stored for each step inside of a run, giving this type of XML source:
<STATISTIC Name="Token moves"> <RUN INDEX="0"> <DATA INDEX="0" TYPE="INT">20</DATA> <DATA INDEX="1" TYPE="INT">25</DATA> <DATA INDEX="2" TYPE="INT">25</DATA> <DATA INDEX="3" TYPE="INT">25</DATA> </RUN> <RUN INDEX="1"> <DATA INDEX="0" TYPE="INT">20</DATA> <DATA INDEX="1" TYPE="INT">20</DATA> <DATA INDEX="2" TYPE="INT">20</DATA> </RUN> </STATISTIC>
I would like to import this data into excel with each Statistic getting a single spreadsheet, runs across and steps down.
Is this possible, if so, how?



Help
Back to top










