I’m taking information from a table:
<xsl:template match="table1">
<xsl:element name="ApplicantAddress">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
And I want to make sure I don’t include a field from that table. Is that possible?
Push style:
Pull style: