Hi,
I am using the xslt below and wondered if there is a way of filtering empty elemants from the transformation, i.e. if <xsl:value-of select="address_line1"/> is empty remove from the transformation.
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="
http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-m
icrosoft-c
om:xslt" exclude-result-prefixes="m
sxsl">
<xsl:template match="response/rows/row">
<xsl:value-of select="house_no/><br />
<xsl:value-of select="address_line1"/><b
r />
<xsl:value-of select="address_line2"/><b
r />
<xsl:value-of select="address_line3"/><b
r />
<xsl:value-of select="county"/><br />
<xsl:value-of select="post_code"/><br />
</xsl:template>
</xsl:stylesheet>
Many Thanks