Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9246941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T09:36:40+00:00 2026-06-18T09:36:40+00:00

The following XSLT does everything I need to group my XML data by degree

  • 0

The following XSLT does everything I need to group my XML data by degree and then by Electives and Requirements. But I can’t get the <ACPGAREAOFSTUDY1> title to appear only once per section. I need a parent grouping outside of the degree with only one <ACPGAREAOFSTUDY1> data element to introduce it.

Here is the XSLT:

 <?xml version="1.0"?><!-- DWXMLSource="STX049 Catalog parsed.xml" -->
 <!DOCTYPE xsl:stylesheet>
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="xml" indent="no"/>
 <xsl:key name="degrees-by-title" match="Section" use="ICCB1" />

 <xsl:template match="/*">
 <CrystalReport>
  <xsl:apply-templates select="Group/Group/Group"/>
 </CrystalReport>
 </xsl:template>

 <xsl:template match="Group">
 <xsl:text>
 </xsl:text><Degree><areaofstudy><xsl:value-of select="ACPGAREAOFSTUDY1" /></areaofstudy>
 <xsl:apply-templates select="Details/Section[generate-id() = generate-id(key('degrees-by-title', ICCB1)[1])]" mode="group">
 <xsl:sort select="ACADPROGRAMSID1" />
 </xsl:apply-templates>
 </Degree>
 </xsl:template>

 <xsl:template match="Section" mode="group">
 <department><Degreetitle><xsl:apply-templates select="ACPGDEGREE1" /></Degreetitle>
 <Certtitle><xsl:apply-templates select="CCD11" /></Certtitle><xsl:text>
 </xsl:text><DegreeDesc><xsl:apply-templates select="ACPGCOMMENTS1" /></DegreeDesc><xsl:text>
 ICCB Code </xsl:text><ICCBcode><xsl:apply-templates select="ICCB1" /></ICCBcode><xsl:text> | Field of Study Code: </xsl:text><ProgramID><xsl:apply-templates select="ACADPROGRAMSID1" /></ProgramID>
 <xsl:variable name="courses" select="key('degrees-by-title', ICCB1)" />

 <xsl:call-template name="CourseGroup">
 <xsl:with-param name="courses" select="$courses[FlagElectives1 = 'N']" />
 <xsl:with-param name="title" select="'Program Requirements'" />
 </xsl:call-template>

 <xsl:call-template name="CourseGroup">
 <xsl:with-param name="courses" select="$courses[FlagElectives1 = 'Y']" />
 <xsl:with-param name="title" select="'Program Electives'" />
 </xsl:call-template>
 </department>
 </xsl:template>

 <xsl:template name="CourseGroup">
 <xsl:param name="courses" />
 <xsl:param name="title" />

 <xsl:if test="$courses"><xsl:text>
 </xsl:text><xsl:value-of select="$title" />
 <xsl:apply-templates select="$courses">
 <xsl:sort select="FlagElectives1" order="ascending" />
 <xsl:sort select="DEPARTMENT11" />
 <xsl:sort select="CRSNO1" />
 </xsl:apply-templates>
 </xsl:if>
 </xsl:template>

 <xsl:template match="Section"><xsl:text>
 </xsl:text><Details><class><deptname><xsl:apply-templates select="DEPARTMENT11" /></deptname><xsl:text>    </xsl:text><courseno><xsl:apply-templates select="CRSNO1" /></courseno><xsl:text>   </xsl:text>
 <classname><xsl:apply-templates select="CRSTITLE1" /></classname><xsl:text>    </xsl:text>
 <classcredit><xsl:apply-templates select="CRSMINCRED1" /></classcredit></class></Details>
 </xsl:template>

 <xsl:template match="ACPGDEGREE1/text()">
 <xsl:value-of select="concat(., ' DEGREE')"/>
 </xsl:template>

 <xsl:template match="CCD11/text()">
 <xsl:value-of select="concat(., ' CERTIFICATE')" />
 </xsl:template>
 </xsl:stylesheet>

Here is the basic XML Structure:

<?xml version="1.0" encoding="UTF-8"?>
 <CrystalReport>
 <Group Level="1">
  <Group Level="2">
  <Group Level="3">
    <Details>
      <Section>
        <ACPGDEGREE1>AAS</ACPGDEGREE1>
        <CCD11/>
        <ACPGCOMMENTS1>The Accounting program</ACPGCOMMENTS1>
        <ICCB1>3203</ICCB1>
        <ACADPROGRAMSID1>ACCOU.AAS</ACADPROGRAMSID1>
        <CRSNO1>1110</CRSNO1>
        <ACRBPRINTEDSPEC1/>
        <ACPGHOMELANGNOTREQDRSN1>General Education</ACPGHOMELANGNOTREQDRSN1>
        <CRSMINCRED1>2</CRSMINCRED1>
        <ACPGAREAOFSTUDY1>Accounting</ACPGAREAOFSTUDY1>
        <CRSTITLE1>Using Computers: An Introduction</CRSTITLE1>
        <DEPARTMENT11>ACCOU</DEPARTMENT11>
        <CRSSUBJECT1>CIS</CRSSUBJECT1>
        <ACRBLABEL1>CIS REQUIREMENT</ACRBLABEL1>
        <CRSMAXCRED1/>
        <FlagElectives1>N</FlagElectives1>
      </Section>
    </Details>
    <Details>
      <Section>
        <ACPGDEGREE1>AAS</ACPGDEGREE1>
        <CCD11/>
        <ACPGCOMMENTS1>The Accounting program</ACPGCOMMENTS1>
        <ICCB1>3203</ICCB1>
        <ACADPROGRAMSID1>ACCOU.AAS</ACADPROGRAMSID1>
        <CRSNO1>1150</CRSNO1>
        <ACRBPRINTEDSPEC1/>
        <ACPGHOMELANGNOTREQDRSN1>General Education</ACPGHOMELANGNOTREQDRSN1>
        <CRSMINCRED1>3</CRSMINCRED1>
        <ACPGAREAOFSTUDY1>Accounting</ACPGAREAOFSTUDY1>
        <CRSTITLE1>Intro to Computer</CRSTITLE1>
        <DEPARTMENT11>ACCOU</DEPARTMENT11>
        <CRSSUBJECT1>CIS</CRSSUBJECT1>
        <ACRBLABEL1>CIS</ACRBLABEL1>
        <CRSMAXCRED1/>
        <FlagElectives1>Y</FlagElectives1>
      </Section>
    </Details>
  </Group>
  </Group>
 </Group>
</CrystalReport>

To produce the following XML:

<CrystalReport>
 <Degrees><areaofstudy>Accounting</areaofstudy)
 <Degree>
<department>
  <Degreetitle>AAS DEGREE</Degreetitle>
  <Certtitle />
  <DegreeDesc>The Accounting program</DegreeDesc>
  <ICCBcode>3203</ICCBcode>
  <ProgramID>ACCOU.AAS</ProgramID>
  <h1>Program Requirements</h1>
  <Details>
    <class>
      <deptname>ACCOU</deptname>
      <courseno>1150</courseno>
      <classname>Intro to Computer</classname>
      <classcredit>3</classcredit>
      <Elective>Y</Elective>
    </class>
  </Details>
  <h1>Program Electives</h1>
  <Details>
    <class>
      <deptname>ACCOU</deptname>
      <courseno>1110</courseno>
      <classname>Using Computers: An Introduction</classname>
      <classcredit>2</classcredit>
      <Elective>N</Elective>
    </class>
  </Details>
 </department>
</Degree>
</Degrees>
</CrystalReport>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T09:36:41+00:00Added an answer on June 18, 2026 at 9:36 am

    How’s this:

    <?xml version="1.0"?>
    <!-- DWXMLSource="STX049 Catalog parsed.xml" -->
    <!DOCTYPE xsl:stylesheet>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:output method="xml" indent="no"/>
      <xsl:variable name="allSections"
                    select="/CrystalReport/Group/Group/Group/Details/Section" />
    
      <xsl:key name="kArea" match="Section" use="ACPGAREAOFSTUDY1"/>
      <xsl:key name="kDepartment" match="Section"
               use="concat(ACPGAREAOFSTUDY1, '+', ICCB1)" />
    
      <xsl:variable name="deptFirsts"
                 select="$allSections[generate-id() = 
                   generate-id(key('kDepartment',
                    concat(ACPGAREAOFSTUDY1, '+', ICCB1))[1])]" />
    
    
      <xsl:template match="/">
        <CrystalReport>
          <Degrees>
            <xsl:apply-templates
              select="$allSections[generate-id() = 
                     generate-id(key('kArea', ACPGAREAOFSTUDY1)[1])]"
              mode="group"/>
          </Degrees>
        </CrystalReport>
      </xsl:template>
    
      <xsl:template match="Section" mode="group">
        <xsl:variable name="area" select="ACPGAREAOFSTUDY1" />
        <areaofstudy>
          <xsl:value-of select="$area"/>
        </areaofstudy>
        <xsl:text>&#xA;</xsl:text>
        <Degree>
          <xsl:apply-templates select="$deptFirsts[ACPGAREAOFSTUDY1 = $area]"
                               mode="department">
            <xsl:sort select="ACADPROGRAMSID1" />
          </xsl:apply-templates>
        </Degree>
      </xsl:template>
    
      <xsl:template match="Section" mode="department">
        <department>
          <xsl:apply-templates select="." mode="departmentValues" />
    
          <xsl:variable name="courses"
                  select="key('kDepartment', 
                       concat(ACPGAREAOFSTUDY1, '+', ICCB1))" />
    
          <xsl:call-template name="CourseGroup">
            <xsl:with-param name="courses" select="$courses[FlagElectives1 = 'N']" />
            <xsl:with-param name="title" select="'Program Requirements'" />
          </xsl:call-template>
    
          <xsl:call-template name="CourseGroup">
            <xsl:with-param name="courses" select="$courses[FlagElectives1 = 'Y']" />
            <xsl:with-param name="title" select="'Program Electives'" />
          </xsl:call-template>
        </department>
      </xsl:template>
    
      <xsl:template match="Section" mode="departmentValues">
        <Degreetitle>
          <xsl:apply-templates select="ACPGDEGREE1" />
        </Degreetitle>
        <Certtitle>
          <xsl:apply-templates select="CCD11" />
        </Certtitle>
        <xsl:text>&#xA;</xsl:text>
        <DegreeDesc>
          <xsl:apply-templates select="ACPGCOMMENTS1" />
        </DegreeDesc>
        <xsl:text>&#xA;ICCB Code</xsl:text>
        <ICCBcode>
          <xsl:apply-templates select="ICCB1" />
        </ICCBcode>
        <xsl:text> | Field of Study Code: </xsl:text>
        <ProgramID>
          <xsl:apply-templates select="ACADPROGRAMSID1" />
        </ProgramID>
      </xsl:template>
    
      <xsl:template name="CourseGroup">
        <xsl:param name="courses" />
        <xsl:param name="title" />
    
        <xsl:if test="$courses">
          <xsl:text>&#xA;</xsl:text>
          <xsl:value-of select="$title" />
          <xsl:apply-templates select="$courses">
            <xsl:sort select="FlagElectives1" order="ascending" />
            <xsl:sort select="DEPARTMENT11" />
            <xsl:sort select="CRSNO1" />
          </xsl:apply-templates>
        </xsl:if>
      </xsl:template>
    
      <xsl:template match="Section">
        <xsl:text>&#xA;</xsl:text>
        <Details>
          <class>
            <deptname>
              <xsl:apply-templates select="DEPARTMENT11" />
            </deptname>
            <xsl:text>    </xsl:text>
            <courseno>
              <xsl:apply-templates select="CRSNO1" />
            </courseno>
            <xsl:text>   </xsl:text>
            <classname>
              <xsl:apply-templates select="CRSTITLE1" />
            </classname>
            <xsl:text>    </xsl:text>
            <classcredit>
              <xsl:apply-templates select="CRSMINCRED1" />
            </classcredit>
          </class>
        </Details>
      </xsl:template>
    
      <xsl:template match="ACPGDEGREE1/text()">
        <xsl:value-of select="concat(., ' DEGREE')"/>
      </xsl:template>
    
      <xsl:template match="CCD11/text()">
        <xsl:value-of select="concat(., ' CERTIFICATE')" />
      </xsl:template>
    </xsl:stylesheet>
    

    When run on your sample XML, this produces:

    <CrystalReport>
      <Degrees>
        <areaofstudy>Accounting</areaofstudy>
        <Degree>
          <department>
            <Degreetitle>AAS DEGREE</Degreetitle><Certtitle />
            <DegreeDesc>The Accounting program</DegreeDesc>
            ICCB Code<ICCBcode>3203</ICCBcode> | Field of Study Code: <ProgramID>ACCOU.AAS</ProgramID>
            Program Requirements
            <Details>
              <class>
                <deptname>ACCOU</deptname>
                <courseno>1110</courseno>
                <classname>Using Computers: An Introduction</classname>
                <classcredit>2</classcredit>
              </class>
            </Details>
            Program Electives
            <Details>
              <class>
                <deptname>ACCOU</deptname>
                <courseno>1150</courseno>
                <classname>Intro to Computer</classname>
                <classcredit>3</classcredit>
              </class>
            </Details>
          </department>
        </Degree>
      </Degrees>
    </CrystalReport>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following: <Data xmlns:x=Namespace.com> <Node></Node> <Node2></Node2> <Node3></Node3> </Data> How using XSLT can
I have the following line of xml that I'm trying transform using XSLT but
I'm looking for an xslt that does the following: With the input xml of,
Can you share an XSLT with me which achieves following please? Input: <alfa data=abc
Can anyone explain to me why the following xslt: <xsl:if test=EventDocument> Does not pickup
I've the following xslt file: <?xml version=1.0 encoding=UTF-8?> <xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform> <!-- USDomesticCountryList -
I have the following xml <AAA> <BBB>Total</BBB> </AAA> Transforming it with the following xslt
Lets say I have a xslt stylesheet like the following: <?xml version=1.0 encoding=utf-8?> <xsl:stylesheet
I'm applying an XSLT stylesheet to the following XML file: <top xmlns=http://www.foo.com/bar> <elementA />
I am trying to remove the attribute xmlns=http://webdev2003.test.com from the following xml using xsl/xslt,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.