Jump to content

vier.gewinnt

Newbies
  • Posts

    2
  • Joined

  • Last visited

Everything posted by vier.gewinnt

  1. Hello everyone, I have a problem I couldn't solve despite extensive searching... This is a part from an XML. <contributors> <authors> <author>Willett, C G</author> <author>Tepper, J E</author> <author>Kaufman, D S</author> <author>Shellito, P C</author> <author>Eliseo, R</author> <author>Convery, K</author> <author>Wood, W C</author> </authors> </contributors> I tried to import all authors into a Filemaker cell by using this xsl (excerpt) <FIELD EMPTYOK="YES" MAXREPEAT="15" NAME="Author" TYPE="TEXT"/> <COL> <DATA> <xsl:for-each select="contributors/authors"> <xsl:value-of select="author"> </xsl:value-of> </xsl:for-each> </DATA> </COL> Unfortunately only the first name is imported. Why? What's missing? Would be glad if someone could help me... Cheers
  2. Hi there, I tried to import data from an xml into Filemaker using an xsl. It work fine with most of the variables, however I could not master to import all subsets of the abstract, which is organized like this in the xml: <Abstract> <AbstractText Label="BACKGROUND" NlmCategory="BACKGROUND"> </AbstractText> <AbstractText Label="METHODS" NlmCategory="METHODS"> </AbstractText> <AbstractText Label="RESULTS" NlmCategory="RESULTS"> </AbstractText> <AbstractText Label="CONCLUSIONS" NlmCategory="CONCLUSIONS"> </AbstractText> <CopyrightInformation>Copyright 2004 American Cancer Society.</CopyrightInformation> </Abstract> The part for this in the xsl looks like this: <COL> <DATA> <xsl:for-each select="MedlineCitation/Article/Abstract"> <xsl:value-of select="AbstractText"/> </xsl:for-each> </DATA> </COL> However Filemaker only imports the first subset "Background". What do I have to do, to import all? (I want the entire text in one cell...) Thanks in advance!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.