Jump to content

Andreas42

Members
  • Posts

    2
  • Joined

  • Last visited

Andreas42's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi, I would like to translate XML to Excel. I found this useful article https://stackoverflow.com/questions/3534546/xsl-taking-xml-transforming-it-into-excel It works fine so far. My question is, is it possible to create a Excel cell value with a hyperlink and not only with Text? Thanks Andreas
  2. Hi, I struggle with choosing unique elements from a list that are given their uniqueness by an attribute. The XML is the following: <elemente> <element> <subelement wert="1"/> </element> <element> <subelement wert="2"/> </element> <element> <subelement wert="3"/> </element> <element> <subelement wert="2"/> </element> <element> <subelement wert="1"/> </element> <element> <subelement wert="4"/> </element> <element> <subelement wert="1"/> </element> </elemente> The result should be a list of odes like: <element> <subelement wert="1"/> </element> <element> <subelement wert="2"/> </element> <element> <subelement wert="3"/> </element> Would be great if anybody could help me with that. Thanks Andreas
×
×
  • Create New...