I am creating an XMLDocument from a ADO recordset and then merging that with a XSL stylesheet. I have a situation where I would like to group my data and break once the group header changes. I cannot figure out how to do this in XSL.
I want my output to look something like this:
John Doe
cell - (214)222-2222
work - (214)454-4444
Jane Doe
cell - (214)392-2393
work - (214)234-2343
The input recordset would look like this:
Name Phone Type
John Doe (214)222-2222 Cell
John Doe (214)454-4444 work
Jane Doe (214)392-2393 cell
Jane Doe (214)234-2343 work
If anyone knows how to do this, I would appreciate the help!
I want my output to look something like this:
John Doe
cell - (214)222-2222
work - (214)454-4444
Jane Doe
cell - (214)392-2393
work - (214)234-2343
The input recordset would look like this:
Name Phone Type
John Doe (214)222-2222 Cell
John Doe (214)454-4444 work
Jane Doe (214)392-2393 cell
Jane Doe (214)234-2343 work
If anyone knows how to do this, I would appreciate the help!