I have created an interactive form where a person can inspect goods and fill out good/bad criteria. They fill in the form and a xml file is generated.
I want to import these xml files (1 per inspection, about 10 per day) into an excel file so I can manage the data.
However, the xml file, when imported to Excel, takes 20-30 rows (each row has 1 piece of data from the form).
How can I get the data so all the fields from the form fill in only 1 row? So then each filled out form would be 1 row of data?
Thanks,
Yokie
The point will be how to design the XML.
Probably, your XML should look something like;
GOODS | QUALITY
-----------------
MAT1 | FINE
MAT2 | OK
MAT3 | BAD
If your form have fixed nubmer of rows (lets say 3 for example) and you want all the data to be outputted in 1 row, then you should design the XML like;
GOODS1 | QUALITY1 | GOODS2 | QUALITY2 | GOODS3 | QUALITY3
------------------------------------------------------------
MAT1 | FINE | MAT2 | OK | MAT3 | BAD
And ofcource, if you don't want to change your form, then you can do the work using your excel macro.
But I guess it will be out of this forum's scope.