Apr 30, 2003 #1 digiduck Programmer Apr 4, 2003 95 US I need a way to skip the first find in an <xsl:for-each> Any helps?
Apr 30, 2003 #2 JoeMcGarvey Programmer Oct 31, 2002 47 US Yes... inside your for-each statement put: <xsl:if test="position()>1"> STUFF HERE </xsl:if> Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.comParagraph Publisher - http://www.paragraphpublisher.com Upvote 0 Downvote
Yes... inside your for-each statement put: <xsl:if test="position()>1"> STUFF HERE </xsl:if> Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.comParagraph Publisher - http://www.paragraphpublisher.com
Apr 30, 2003 Thread starter #3 digiduck Programmer Apr 4, 2003 95 US ahh. yes, thank you very much. Upvote 0 Downvote