Strukturering af XML værdier i Excel
Jeg har en XML fil, som jeg importerer i Excel, i følgende format:<Product>
<ProductCode>varenr</ProductCode>
<ProductName>Produktnavn</ProductName>
<ProductDetails>detaljer</ProductDetails>
<ProductDescription><![CDATA[Beskrivelse]]></ProductDescription>
<ProductPrice>pris</ProductPrice>
<ProductImageURL>url til billede</ProductImageURL>
<ProductTimestampUpdated>dato</ProductTimestampUpdated>
<StockCount>lager antal</StockCount>
<Groups>
<Group>varegruppe 1</Group>
<Group>varegruppe 2</Group>
<Group>varegruppe 3</Group>
</Groups>
</Product>
Mit problem er så at Excel opretter en ny identisk row for hver <group> istedet for at sætte dem på som columns...
Hvordan kan jeg ændrer det?