RE: [xsl] Referencing a lookup table

Subject: RE: [xsl] Referencing a lookup table
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 12 Jul 2004 10:58:37 +0100
> If the context node is a <cover> element, you can reference 
> the <desc> of
> the corresponding <fund> element as
> 
> ../../funds/fund[@code=current()/@fundcode]/desc
> 

Sorry, you're using elements rather than attributes, so it should be

../../funds/fund[code=current()/fundcode]/desc

Michael Kay

Current Thread