I'm trying to create an address that validates against a schema set in stone, it requires that at least 2 of the 5 lines have been entered.
Only show address node if at least two of the five lines are available.
Is there a way I can check this using XSL
The input looks like this:
<Services Street="1 The Road " ExtraAddress="The Street"
VillageTownName="" PostalTownName="" County="">
Required valid output
<Address>
<line>1 The Road</line>
<line>The Street</line
</Address>
Thanks,
Mark