Re: [xsl] Can I use variables in location paths?

Subject: Re: [xsl] Can I use variables in location paths?
From: r.devries@xxxxxxxx
Date: Tue, 27 May 2003 15:27:27 +0200
You should use:

<xsl:variable name="Scenario">BASECASE</xsl:variable>
<xsl:variable name="Date">20030408</xsl:variable>

<xsl:for-each select="PositionFactorLevels/Scenario[ @Name=$Scenario
]/Factor/Data[ @Date= $Date ]">
     <xsl:value-of select="../@Name" /> = <xsl:value-of select="." />
<br></br>
</xsl:for-each>

Success!

Greetings René
   {@   @}
        ^
      \_/

"You don't need eyes to see, you need vision!"

TJIP PCL
Steenovenweg 3
5708 HN  Helmond
tel: +31(0) 492 502 222
fax: +31(0) 492 502 299
e-mail: R.deVries@xxxxxxxx
internet: www.tjip.com

***************************DISCLAIMER********************************
Deze e-mail is uitsluitend bestemd voor de geadresseerde(n).
Verstrekking aan en gebruik door anderen is niet toegestaan.
TJIP PCL sluit iedere aansprakelijkheid uit die voortvloeit uit
elektronische verzending.

This e-mail is intended exclusively for the addressee(s), and may
not be passed on to, or made available for use by any person
other than the addressee(s). TJIP PCL rules out any and every liability
resulting from any electronic transmission.


                                                                                                                                        
                    "Chris Ward"                                                                                                        
                    <cward@xxxxxxxxxxxxxxxxxxx>        To:     <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>                                        
                    Sent by:                           cc:                                                                              
                    owner-xsl-list@xxxxxxxxxxxx        Subject:     [xsl] Can I use variables in location paths?                        
                    rytech.com                                                                                                          
                                                                                                                                        
                                                                                                                                        
                    27-05-2003 15:09                                                                                                    
                    Please respond to xsl-list                                                                                          
                                                                                                                                        
                                                                                                                                        




                     <xsl:variable name="Scenario">BASECASE</xsl:variable>
                     <xsl:variable name="Date">20030408</xsl:variable>

                     <xsl:for-each select="PositionFactorLevels/Scenario[
@Name='${Scenario}' ]/Factor/Data[ @Date= '${Date}' ]">
                                          <xsl:value-of select="../@Name"
/> = <xsl:value-of select="." /> <br></br>
                     </xsl:for-each>





 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread