This is a grouping problem. See the XSL FAQ for more info.
http://www.dpawson.co.uk/xsl/sect2/N4486.html
Dave
"Robinson Simon"
<[EMAIL PROTECTED] To: <[EMAIL PROTECTED]>
wton.co.uk> cc: (bcc: David N
Bertoni/Cambridge/IBM)
Subject: Generate unique
attribute values
04/14/2003 08:33
AM
If I have a list of entries called Column such as
<Column Name="SEDOL"/>
<Column Name="EFFECTIVE_DATE"/>
<Column Name="COUPON_RATE"/>
<Column Name="SEDOL"/>
And I want to generate a list of unique,sorted entries of Column such as
<Column Name="COUPON_RATE"/>
<Column Name="EFFECTIVE_DATE"/>
<Column Name="SEDOL"/>
The unique Column Name attribute values are going to be used to populate a
list box on a Web page - is there a recommended method to achieve this. I
am currently writing the value out to a Unix file and doing a unique sort
to generate the file. But I would like to do the search using XSL for
obvious reasons.
Regards
Simon