RE: [xsl] Why template match differs?

Subject: RE: [xsl] Why template match differs?
From: Jarno.Elovirta@xxxxxxxxx
Date: Fri, 19 Dec 2003 11:50:21 +0200
Hi,

> I need to show the unique Call Type and the sum of Amount for 
> each Call
> Type. Can you please help me to write such a XSL for-each 
> loop or suggest if
> any other way to do. I am really struck into this.

The daily dose of <http://www.jenitennison.com/xslt/grouping/>.

In pseudo-code:
 
  key "type" "Calls" "Type"
  template "Bill":
    for "Calls[generate-id(.) = generate-id(key("type", Type))]:
      value-of "Type"
      value-of "sum(key("type", Type)/Amt)"

Cheers,

Jarno

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


Current Thread