Link to home
Start Free TrialLog in
Avatar of mmalik15
mmalik15

asked on

how to extract unique values from a string node

I have nodes like this
<?xml version="1.0" encoding="UTF-8"?>
<Records>
      <record> Heart Failure; Patient Readmission; Risk Assessment; Time Factors; Heart failure; Risk assessment</record>
</Records>

From the stirng  "Heart Failure; Patient Readmission; Risk Assessment; Time Factors; Heart failure; Risk assessment"
I need to remove the duplicates and my output string should be like
Heart Failure; Patient Readmission; Risk Assessment; Time Factors


Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

You have the code for that in my answer to your previous question
Avatar of mmalik15
mmalik15

ASKER

i have slightly modified your xslt but unable to get the desired result. The output is coming liket this
"Heart Failure; Patient Readmission; Risk Assessment; Time Factors; Heart failure; Risk assessment"



<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
	<xsl:variable name="lc" select="'azertyuiopqsdfghjklmwxcvbn'"/>
	<xsl:variable name="uc" select="'AZERTYUIOPQSDFGHJKLMWXCVBN'"/>
	<xsl:template match="/">
		<Records>
			<xsl:for-each select="/documents/document">
				<record>
					<xsl:variable name="mylist">
						<xsl:call-template name="strip-tags">
							<xsl:with-param name="text" select="concat(substring-after(element[@name='MSHValues']/value,':'),';',substring-after(element[@name='MTHValues']/value,':'),';',substring-after(element[@name='SNOMEDCTValues']/value, ':'))"/>
						</xsl:call-template>
					</xsl:variable>
					<xsl:variable name="mylist">
						<xsl:call-template name="process-values">
							<xsl:with-param name="list" select="';'"/>
							<xsl:with-param name="remaining" select="$firstlist"/>
						</xsl:call-template>
					</xsl:variable>
				</record>
			</xsl:for-each>
		</Records>
	</xsl:template>
	<xsl:template name="process-values">
		<xsl:param name="list"/>
		<xsl:param name="remaining"/>
		<xsl:choose>
			<xsl:when test="contains($remaining, ';')">
				<xsl:variable name="new-list">
					<xsl:call-template name="filter-and-add">
						<xsl:with-param name="list" select="$list"/>
						<xsl:with-param name="term" select="substring-before($remaining, ';')"/>
					</xsl:call-template>
				</xsl:variable>
				<xsl:call-template name="process-values">
					<xsl:with-param name="list" select="$new-list"/>
					<xsl:with-param name="remaining" select="substring-after($remaining, ';')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:variable name="new-list">
					<xsl:call-template name="filter-and-add">
						<xsl:with-param name="list" select="$list"/>
						<xsl:with-param name="term" select="$remaining"/>
					</xsl:call-template>
				</xsl:variable>
				<xsl:value-of select="substring($new-list, 3)"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
	<xsl:template name="filter-and-add">
		<xsl:param name="list"/>
		<xsl:param name="term"/>
		<xsl:param name="norm-term" select="normalize-space(translate($term, '()1234567890', ''))"/>
		<xsl:choose>
			<xsl:when test="not(contains(concat($list, '; '), concat('; ', $norm-term, '; ')))">
				<xsl:value-of select="concat($list, '; ', $norm-term)"/>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$list"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
	<xsl:template name="strip-tags">
		<xsl:param name="text"/>
		<xsl:choose>
			<xsl:when test="contains($text, '&lt;')">
				<xsl:value-of select="substring-before($text, '&lt;')"/>
				<xsl:call-template name="strip-tags">
					<xsl:with-param name="text" select="substring-after($text, '&gt;')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$text"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
</xsl:stylesheet>

Open in new window

<?xml version="1.0" encoding="utf-8"?>
<documents><document id="http://www.qualitymeasures.ahrq.gov/content.aspx?id=27444"><element name="MSHValues"><value>: 

                                            &lt;a href='/search/search.aspx?term=Heart+Failure &amp;umls=1'&gt;Heart Failure&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Patient+Readmission &amp;umls=1'&gt;Patient Readmission&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Risk+Assessment &amp;umls=1'&gt;Risk Assessment&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Time+Factors &amp;umls=1'&gt;Time Factors&lt;/a&gt;

                                        </value></element><element name="MTHValues"><value>: 

                                            &lt;a href='/search/search.aspx?term=Heart+failure &amp;umls=1'&gt;Heart failure&lt;/a&gt;

                                        </value></element><element name="SNOMEDCTValues"><value>: 

                                            &lt;a href='/search/search.aspx?term=Heart+failure &amp;umls=1'&gt;Heart failure&lt;/a&gt; (84114007); &lt;a href='/search/search.aspx?term=Risk+assessment &amp;umls=1'&gt;Risk assessment&lt;/a&gt; (225338004)

                                        

                                </value></element><element name="body"><value>&lt;p&gt;This measure* is a hospital-specific, risk-standardized, all-cause 30-day readmission (defined as readmission for any cause within 30 days from the date of discharge of the index admission) for patients discharged from the hospital with a principal discharge diagnosis of heart failure (HF).&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;*This is a Centers for Medicare &amp;amp; Medicaid Services (CMS) only measure.&lt;/p&gt;</value></element><element name="html"><value>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;keywords&quot; content=&quot;insert keywords here&quot; /&gt;&lt;meta name=&quot;description&quot; content=&quot;Heart failure (HF): hospital 30-day, all-cause, risk-standardized readmission rate (RSRR) following HF hospitalization.&quot; /&gt;&lt;title&gt;

	National Quality Measures Clearinghouse | Heart failure (HF): hospital 30-day, all-cause, risk-standardized readmission rate (RSRR) following HF hospitalization.

&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;div class=&quot;padding content_page&quot;&gt;

        &lt;div style=&quot;float:left; width:500px;&quot; class=&quot;accent_color bigger_bold&quot;&gt;

            &lt;span id=&quot;ctl00_ContentPlaceHolder1_lblTitleType&quot;&gt;Measure&lt;/span&gt; Summary

        &lt;/div&gt;

        &lt;div style=&quot;margin-left:200px; text-align:right;&quot;&gt;

            &lt;img src=&quot;images/icon_print.gif&quot; alt=&quot;&quot; style=&quot;margin-right:5px;&quot; /&gt;&lt;a id=&quot;ctl00_ContentPlaceHolder1_hlPrint&quot; href=&quot;javascript:LaunchPrintView(27444);&quot;&gt;Print&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;b&gt;Download as:&lt;/b&gt; &lt;a onclick=&quot;dcsMultiTrack('DCS.dcsuri', '/content/download/PDF','WT.ti', 'Content%20Page%20|%20Download%20|%20PDF');&quot; id=&quot;ctl00_ContentPlaceHolder1_lbPDFDownload&quot; href=&quot;javascript:__doPostBack('ctl00$ContentPlaceHolder1$lbPDFDownload','')&quot;&gt;PDF&lt;/a&gt; (&lt;a href=&quot;/disclaimer.aspx?redirect=http://get.adobe.com/reader/&quot;&gt;Adobe Reader&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot;/&gt;) | &lt;a onclick=&quot;dcsMultiTrack('DCS.dcsuri', '/content/download/Word','WT.ti', 'Content%20Page%20|%20Download%20|%20Word');&quot; id=&quot;ctl00_ContentPlaceHolder1_lbWordDownload&quot; href=&quot;javascript:__doPostBack('ctl00$ContentPlaceHolder1$lbWordDownload','')&quot;&gt;Word&lt;/a&gt; | &lt;a onclick=&quot;dcsMultiTrack('DCS.dcsuri', '/content/download/HTML','WT.ti', 'Content%20Page%20|%20Download%20|%20HTML');&quot; id=&quot;ctl00_ContentPlaceHolder1_lbHTMLDownload&quot; href=&quot;javascript:__doPostBack('ctl00$ContentPlaceHolder1$lbHTMLDownload','')&quot;&gt;HTML&lt;/a&gt; | &lt;a onclick=&quot;dcsMultiTrack('DCS.dcsuri', '/content/download/XML','WT.ti', 'Content%20Page%20|%20Download%20|%20XML');&quot; id=&quot;ctl00_ContentPlaceHolder1_lbXMLDownload&quot; href=&quot;javascript:__doPostBack('ctl00$ContentPlaceHolder1$lbXMLDownload','')&quot;&gt;XML&lt;/a&gt;

            &lt;span id=&quot;ctl00_ContentPlaceHolder1_lblExport&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;b&gt;Export to: &lt;/b&gt;&lt;/span&gt;

            &lt;a onclick=&quot;dcsMultiTrack('DCS.dcsuri', '/content/download/ENDNOTE','WT.ti', 'Content%20Page%20|%20Download%20|%20ENDNOTE');&quot; id=&quot;ctl00_ContentPlaceHolder1_lbCitManager&quot; href=&quot;javascript:__doPostBack('ctl00$ContentPlaceHolder1$lbCitManager','')&quot;&gt;Citation Manager&lt;/a&gt;

        &lt;/div&gt;

        

        &lt;div class=&quot;content_spacer_top&quot;&gt;&lt;img src=&quot;images/spacer.gif&quot; style=&quot;height:1px;&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;

        

         &lt;table id=&quot;ctl00_ContentPlaceHolder1_dlXML&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;

	&lt;tr&gt;

		&lt;td&gt;

                

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field11'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl00_FieldName&quot;&gt;Title&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_title&quot;&gt;Heart failure (HF): hospital 30-day, all-cause, risk-standardized readmission rate (RSRR) following HF hospitalization.&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field1'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl01_FieldName&quot;&gt;Source(s)&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Specifications manual for national hospital inpatient quality measures, version 3.1a. Centers for Medicare &amp; Medicaid Services (CMS), The Joint Commission; 2010 Apr 1. various p. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_lblBookmarks&quot;&gt;

                    &lt;div style=&quot;clear:left;position:relative;&quot;&gt;

                        &lt;div class=&quot;content_bookmarks_box&quot;&gt;

                            &lt;img name=&quot;tabs_summary_imagemap&quot; id=&quot;tabs_summary_imagemap&quot; src=&quot;images/NQMC/tabs_summary_jump.gif&quot; border=&quot;0&quot; usemap=&quot;#m_tabs_summary_imagemap&quot; alt=&quot;&quot; /&gt;&lt;map name=&quot;m_tabs_summary_imagemap&quot; id=&quot;m_tabs_summary_imagemap&quot;&gt;&lt;area shape=&quot;poly&quot; coords=&quot;13,0,85,0,85,27,13,27,13,0&quot; href=&quot;javascript:;&quot; onmousedown=&quot;showDiv('jump');&quot; alt=&quot;Jump To&quot; /&gt;&lt;area shape=&quot;poly&quot; coords=&quot;92,0,241,0,241,27,92,27,92,0&quot; href=&quot;javascript:;&quot; onmousedown=&quot;showDiv('classification');&quot; alt=&quot;Guideline Classification&quot; /&gt;&lt;area shape=&quot;poly&quot; coords=&quot;247,0,364,0,364,27,247,27,247,0&quot; href=&quot;javascript:;&quot; onmousedown=&quot;showDiv('related');&quot; alt=&quot;Related Content&quot; /&gt;&lt;/map&gt;

                        &lt;/div&gt;

                        

                        &lt;div class=&quot;content_bookmarks_box_top_line&quot;&gt;&lt;/div&gt;

                        

                        &lt;div id=&quot;divJump&quot; class=&quot;content_jumplinks_box&quot;&gt;

                            &lt;table&gt;

                            &lt;tr&gt;

                            &lt;td valign=&quot;top&quot;&gt;

                            

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section563&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks1_ctl00_aBookmark1&quot; class=&quot;content_jumplink&quot;&gt;Measure Domain&lt;/a&gt;

                                    &lt;/div&gt;

                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section566&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks1_ctl01_aBookmark1&quot; class=&quot;content_jumplink&quot;&gt;Brief Abstract&lt;/a&gt;

                                    &lt;/div&gt;

                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section573&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks1_ctl02_aBookmark1&quot; class=&quot;content_jumplink&quot;&gt;Evidence Supporting the Measure&lt;/a&gt;

                                    &lt;/div&gt;

                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section580&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks1_ctl03_aBookmark1&quot; class=&quot;content_jumplink&quot;&gt;State of Use of the Measure&lt;/a&gt;

                                    &lt;/div&gt;

                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section583&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks1_ctl04_aBookmark1&quot; class=&quot;content_jumplink&quot;&gt;Application of the Measure in its Current Use&lt;/a&gt;

                                    &lt;/div&gt;

                                

                            &lt;/td&gt; 

                            &lt;td valign=&quot;top&quot;&gt;

                                                            

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section590&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks2_ctl00_aBookmark2&quot; class=&quot;content_jumplink&quot;&gt;Institute of Medicine (IOM) National Health Care Quality Report Categories&lt;/a&gt;

                                    &lt;/div&gt;

                                                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section593&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks2_ctl01_aBookmark2&quot; class=&quot;content_jumplink&quot;&gt;Data Collection for the Measure&lt;/a&gt;

                                    &lt;/div&gt;

                                                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section605&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks2_ctl02_aBookmark2&quot; class=&quot;content_jumplink&quot;&gt;Computation of the Measure&lt;/a&gt;

                                    &lt;/div&gt;

                                                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section615&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks2_ctl03_aBookmark2&quot; class=&quot;content_jumplink&quot;&gt;Identifying Information&lt;/a&gt;

                                    &lt;/div&gt;

                                                                

                                    &lt;div class=&quot;bookmark_left_dash&quot;&gt;

                                        -

                                    &lt;/div&gt;

                                    &lt;div class=&quot;bookmark_right_text&quot;&gt;

                                        &lt;a href=&quot;#Section99999&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_dlBookmarks2_ctl04_aBookmark2&quot; class=&quot;content_jumplink&quot;&gt;Disclaimer&lt;/a&gt;

                                    &lt;/div&gt;

                                

                            &lt;/td&gt;

                            &lt;/tr&gt;

                            &lt;/table&gt;                           

                        &lt;/div&gt;

                        

                        &lt;div id=&quot;div classification&quot; style=&quot;display:none;&quot; class=&quot;content_classification_tab_box&quot;&gt;

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_divDev&quot;&gt;

                                Developer: &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_lblDevs&quot;&gt;&lt;a href=&quot;/browse/by-organization.aspx?orgid=11&quot;&gt;Centers for Medicare &amp; Medicaid Services&lt;/a&gt;; &lt;a href=&quot;/browse/by-organization.aspx?orgid=2183&quot;&gt;Yale-New Haven Health Services Corporation/Center for Outcomes Research and Evaluation under contract to Centers for Medicare &amp; Medicaid Services&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;

                            &lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_divAge&quot;&gt;

                                 

                                &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_lblAgeNQMC&quot;&gt;Target Population Age:&lt;/span&gt; 

                                &lt;a href='/search/results.aspx?94=102'&gt;Adult: 80 years old and older&lt;/a&gt;; &lt;a href='/search/results.aspx?94=101'&gt;Adult: 65-79 years old&lt;/a&gt;&lt;br /&gt;

                            &lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_divEndorser&quot;&gt;

                                Endorser: 

                                

                                        &lt;a id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptEndorser_ctl00_hlEndorser&quot; href=&quot;/browse/nqf-endorsed.aspx&quot;&gt;National Quality Forum&lt;/a&gt;

                                         

                                    &lt;br /&gt;

                            &lt;/div&gt;

                            

                            &lt;div class=&quot;content_umls_tab_box&quot;&gt;

                                &lt;b&gt;UMLS Concepts&lt;/b&gt; (&lt;a href=&quot;#&quot; onclick=&quot;javascript:window.open('/about/faqPopup.aspx', 'Help','width=500,height=400,location=no');&quot;&gt;what's this?&lt;/a&gt;)&lt;br /&gt;

                                    

                                &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_lblClickToView&quot;&gt;Click to view all measure(s) indexed with these concepts&lt;/span&gt;&lt;br/&gt;

                                &lt;div style=&quot;padding:10px;&quot; id=&quot;divUMLSSummary&quot;&gt;

                                    

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSSummary_ctl00_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;ICD9CM&lt;/span&gt;:

                                            &lt;a href='/search/search.aspx?term=Heart+failure%2c+unspecified&amp;vocab=ICD9CM&amp;code= (428.9)&amp;umls=1'&gt;Heart failure, unspecified&lt;/a&gt; (428.9)

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSSummary_ctl02_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;MSH&lt;/span&gt;:

                                            &lt;a href='/search/search.aspx?term=Heart+Failure&amp;vocab=MSH&amp;code=&amp;umls=1'&gt;Heart Failure&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Risk+Assessment&amp;vocab=MSH&amp;code=&amp;umls=1'&gt;Risk Assessment&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Time+Factors&amp;vocab=MSH&amp;code=&amp;umls=1'&gt;Time Factors&lt;/a&gt;

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSSummary_ctl04_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;MTH&lt;/span&gt;:

                                            &lt;a href='/search/search.aspx?term=Heart+failure&amp;vocab=MTH&amp;code=&amp;umls=1'&gt;Heart failure&lt;/a&gt;

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSSummary_ctl06_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;SNOMEDCT&lt;/span&gt;:

                                            &lt;a href='/search/search.aspx?term=Heart+failure&amp;vocab=SNOMEDCT&amp;code= (84114007)&amp;umls=1'&gt;Heart failure&lt;/a&gt; (84114007); &lt;a href='/search/search.aspx?term=Risk+assessment&amp;vocab=SNOMEDCT&amp;code= (225338004)&amp;umls=1'&gt;Risk assessment&lt;/a&gt; (225338004)

                                        

                                &lt;/div&gt;

                                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_divShowAll&quot;&gt;

                                    &lt;a id=&quot;aShowAll&quot; onclick=&quot;showUMLSSection();&quot; style=&quot;cursor:pointer; cursor:hand;&quot;&gt;&lt;b&gt;Show all...&lt;/b&gt;&lt;/a&gt;

                                &lt;/div&gt;

                                &lt;div style=&quot;padding:10px;display:none;&quot; id=&quot;divUMLSAll&quot;&gt;

                                    

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSAll_ctl00_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;ICD9CM&lt;/span&gt;: 

                                            &lt;a href='/search/search.aspx?term=Heart+failure%2c+unspecified &amp;umls=1'&gt;Heart failure, unspecified&lt;/a&gt; (428.9)

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSAll_ctl02_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;MSH&lt;/span&gt;: 

                                            &lt;a href='/search/search.aspx?term=Heart+Failure &amp;umls=1'&gt;Heart Failure&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Patient+Readmission &amp;umls=1'&gt;Patient Readmission&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Risk+Assessment &amp;umls=1'&gt;Risk Assessment&lt;/a&gt;; &lt;a href='/search/search.aspx?term=Time+Factors &amp;umls=1'&gt;Time Factors&lt;/a&gt;

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSAll_ctl04_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;MTH&lt;/span&gt;: 

                                            &lt;a href='/search/search.aspx?term=Heart+failure &amp;umls=1'&gt;Heart failure&lt;/a&gt;

                                        &lt;br /&gt;

                                            

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_rptUMLSAll_ctl06_lblSab&quot; class=&quot;content_umls_sab&quot;&gt;SNOMEDCT&lt;/span&gt;: 

                                            &lt;a href='/search/search.aspx?term=Heart+failure &amp;umls=1'&gt;Heart failure&lt;/a&gt; (84114007); &lt;a href='/search/search.aspx?term=Risk+assessment &amp;umls=1'&gt;Risk assessment&lt;/a&gt; (225338004)

                                        

                                &lt;/div&gt;

                                &lt;a id=&quot;aHide&quot; onclick=&quot;hideUMLSSection();&quot; style=&quot;cursor:pointer; cursor:hand; display:none;&quot;&gt;&lt;b&gt;Hide...&lt;/b&gt;&lt;/a&gt;

                            &lt;/div&gt;

                        &lt;/div&gt;

                        

                        &lt;div id=&quot;divRelated&quot; class=&quot;content_classification_tab_box&quot; style=&quot;display:none;&quot;&gt;

                            &lt;div class=&quot;content_related_inner_box&quot;&gt;

                                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_pnlHierarchy&quot;&gt;

			

                                    View all measures that are part of this hierarchy (&lt;a href=&quot;#&quot; onclick=&quot;javascript:window.open('/about/hierarchyPopup.aspx', 'Help','width=500,height=500,location=no');&quot;&gt;what's this?&lt;/a&gt;):&lt;br/&gt;

                                    

                                    

                                            &lt;div style=&quot;margin-left:10px;&quot;&gt;

                                                &lt;img src=&quot;images/NQMC/icon_hierarchy.gif&quot;  alt=&quot;Hierarchy icon&quot; style=&quot;margin-right:3px;&quot; /&gt;

                                                Collection: &lt;a href=&quot;/browse/by-organization-indiv.aspx?objid=25813&quot;&gt;National Hospital Inpatient Quality Measures&lt;/a&gt;

                                                

                                            &lt;/div&gt;

                                        

                                            &lt;div style=&quot;margin-left:20px;&quot;&gt;

                                                &lt;img src=&quot;images/NQMC/icon_hierarchy.gif&quot;  alt=&quot;Hierarchy icon&quot; style=&quot;margin-right:3px;&quot; /&gt;

                                                Set: &lt;a href=&quot;/browse/by-organization-indiv.aspx?objid=26098&quot;&gt;CMS Readmission Measures&lt;/a&gt;

                                                

                                            &lt;/div&gt;

                                        

                                    &lt;div class=&quot;content_tab_hr&quot;&gt;&lt;img src=&quot;images/spacer.gif&quot; style=&quot;height:1px;&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;

                                

		&lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_pnlViewAll&quot;&gt;

			

                                    View all measure summaries by the developer(s): &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_lblViewAll&quot;&gt;&lt;a href=&quot;/browse/by-organization.aspx?orgid=11&quot;&gt;Centers for Medicare &amp; Medicaid Services&lt;/a&gt;; &lt;a href=&quot;/browse/by-organization.aspx?orgid=2183&quot;&gt;Yale-New Haven Health Services Corporation/Center for Outcomes Research and Evaluation under contract to Centers for Medicare &amp; Medicaid Services&lt;/a&gt;&lt;/span&gt;&lt;br/&gt;

                                

		&lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_pnlRelatedDevLink&quot; class=&quot;ieHack&quot;&gt;

			

                                    &lt;a id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_hlRelatedDevLink&quot; href=&quot;disclaimer.aspx?redirect=http://www.jointcommission.org/specifications_manual_for_national_hospital_inpatient_quality_measures/&quot;&gt;View the original measure documentation&lt;/a&gt;&lt;img src=&quot;/images/icon_externallink.gif&quot; id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl00_ucIcon_iLink&quot; alt=&quot;External Web Site Policy&quot; style=&quot;margin-left:5px;top:1px;&quot; /&gt; 

                                

		&lt;/div&gt;

                            &lt;/div&gt;

                        &lt;/div&gt;

                    &lt;/div&gt;

                &lt;/span&gt;

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section563'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_SectionName&quot;&gt;Measure Domain&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3025'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl00_FieldName&quot;&gt;Primary Measure Domain&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;Clinical Quality Measures: Outcome&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3026'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl01_FieldName&quot;&gt;Secondary Measure Domain&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl01_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Does not apply to this measure&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section566'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_SectionName&quot;&gt;Brief Abstract&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field34'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl00_FieldName&quot;&gt;Description&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This measure* is a hospital-specific, risk-standardized, all-cause 30-day readmission (defined as readmission for any cause within 30 days from the date of discharge of the index admission) for patients discharged from the hospital with a principal discharge diagnosis of heart failure (HF).&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;*This is a Centers for Medicare &amp;amp; Medicaid Services (CMS) only measure.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field21'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl01_FieldName&quot;&gt;Rationale&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Centers for Medicare &amp;amp; Medicaid Services (CMS) developed the heart failure (HF) 30-day readmission measure to complement the existing HF process-of-care and mortality measures. Risk-standardized readmission rates (RSRRs) can provide important additional information about quality of care that is currently not captured by the process and mortality measures and is currently unavailable to hospitals. Variation in readmission, after adjusting for case mix, may reflect differences in hospitals' general environments (such as coordination of care, patient safety policies, and staffing) or variation in care processes not measured in the current core measure set. Outcome measures can focus attention on a broader set of healthcare activities that affect patients' well-being. Moreover, improving outcomes is the ultimate goal of quality improvement, and thus the inclusion of outcomes measures assists in attaining improvement goals.&lt;/p&gt;

&lt;p&gt;Readmission of patients who were recently discharged after hospitalization with HF represents an important, expensive and often preventable, adverse outcome. The risk of readmission can be modified by the quality and type of care provided to these patients. Improving readmission rates is the joint responsibility of hospitals and clinicians. Measuring readmission will create incentives to invest in interventions to improve hospital care, better assess the readiness of patients for discharge, and facilitate transitions to outpatient status. This measure is also responsive to the recent call by the Medicare Payment Advisory Commission (MedPAC) to develop readmission measures, with HF highlighted as one of seven conditions that account for nearly 30% of potentially preventable readmissions in the 15-day window after initial hospital discharge (MedPAC, 2007).&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field3500'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl02_FieldName&quot;&gt;Evidence for Rationale&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Medicare Payment Advisory Commission (MeDPAC). Report to congress: promoting greater efficiency in Medicare. Medicare Payment Advisory Commission (MeDPAC); 2007. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl02_rptValues_ctl01_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Specifications manual for national hospital inpatient quality measures, version 3.1a. Centers for Medicare &amp; Medicaid Services (CMS), The Joint Commission; 2010 Apr 1. various p. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field3022'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl03_FieldName&quot;&gt;Primary Health Components&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Heart failure (HF); 30-day all-cause readmission rate&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field23'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl04_FieldName&quot;&gt;Denominator Description&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This cohort includes admissions for Medicare fee-for-service beneficiaries aged greater than or equal to 65 years with a principal discharge diagnosis of heart failure (HF) and with a complete claims history for 12 months prior to admission (see the related &quot;Denominator Inclusions/Exclusions&quot; field)&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;&lt;strong&gt;Note&lt;/strong&gt;: This outcome measure does not have a traditional numerator and denominator like a core process measure; thus, we are using this field to define our statistically-adjusted outcome measure.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;Hierarchical logistic regression modeling is used to calculate a hospital-specific risk-standardized readmission rate (RSRR). The RSRR is calculated as the ratio of the number of &quot;predicted&quot; to the number of &quot;expected&quot; readmissions, multiplied by the national unadjusted readmission rate. For each hospital, the &quot;numerator&quot; of the ratio is the number of readmissions within 30 days predicted on the basis of the hospital's performance with its observed case mix, and the &quot;denominator&quot; is the number of readmissions expected on the basis of the nation's performance with that hospital's case mix. This approach is analogous to a ratio of &quot;observed&quot; to &quot;expected&quot; used in other types of statistical analyses. It conceptually allows for a comparison of a particular hospital's performance given its case-mix to an average hospital's performance with the same case mix. Thus a lower ratio indicates lower-than-expected readmission or better quality and a higher ratio indicates higher-than-expected readmission or worse quality.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;The predicted hospital outcome (the numerator) is calculated by regressing the risk factors and the hospital-specific intercept on the risk of readmission, multiplying the estimated regression coefficients by the patient characteristics in the hospital, transforming, and then summing over all patients attributed to the hospital to get a value. The expected number of readmissions (the denominator) is obtained by regressing the risk factors and a common intercept on the readmission outcome using all hospitals in our sample, multiplying the subsequent estimated regression coefficients by the patient characteristics observed in the hospital, transforming, and then summing over all patients in the hospital to get a value.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;To assess hospital performance in any reporting period, the model coefficients are re-estimated using the years of data in that period. See the &lt;a href=&quot;disclaimer.aspx?redirect=http://www.qualitynet.org/dcs/ContentServer?c=Page&amp;amp;pagename=QnetPublic%2FPage%2FQnetTier3&amp;amp;cid=1219069855841&quot; title=&quot;QualityNet Web site&quot;&gt;2010 Measures Maintenance Technical Report: Acute Myocardial Infarction, Heart Failure, and Pneumonia 30-Day Risk-standardized Readmission Measures&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt; for more details.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl05_divOuter&quot;&gt;

                                &lt;a id='Field24'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl05_FieldName&quot;&gt;Numerator Description&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl05_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl02_rptField_ctl05_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;The hospital-specific risk-standardized readmission rate (RSRR) is calculated as the ratio of predicted to expected readmissions, multiplied by the national unadjusted rate. The &quot;numerator&quot; of the ratio component is the predicted number of readmissions for each hospital within 30 days given the hospital's performance with its observed case mix.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;&lt;strong&gt;Note&lt;/strong&gt;: This outcome measure does not have a traditional numerator and denominator like a core process measure (e.g., percentage of adult patients with diabetes aged 18-75 years receiving one or more hemoglobin A1c tests per year); thus, we are using this field to define our statistically-adjusted outcome measure.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;Hierarchical logistic regression modeling is used to calculate a hospital-specific RSRR. The RSRR is calculated as the ratio of the number of &quot;predicted&quot; to the number of &quot;expected&quot; readmissions, multiplied by the national unadjusted readmission rate. For each hospital, the &quot;numerator&quot; of the ratio is the number of readmissions within 30 days predicted on the basis of the hospital's performance with its observed case mix, and the &quot;denominator&quot; is the number of readmissions expected on the basis of the nation's performance with that hospital's case mix. This approach is analogous to a ratio of &quot;observed&quot; to &quot;expected&quot; used in other types of statistical analyses. It conceptually allows for a comparison of a particular hospital's performance given its case-mix to an average hospital's performance with the same case mix. Thus a lower ratio indicates lower-than-expected readmission or better quality and a higher ratio indicates higher-than-expected readmission or worse quality.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;The predicted hospital outcome (the numerator) is calculated by regressing the risk factors and the hospital-specific intercept on the risk of readmission, multiplying the estimated regression coefficients by the patient characteristics in the hospital, transforming, and then summing over all patients attributed to the hospital to get a value. The expected number of readmissions (the denominator) is obtained by regressing the risk factors and a common intercept on the readmission outcome using all hospitals in our sample, multiplying the subsequent estimated regression coefficients by the patient characteristics observed in the hospital, transforming, and then summing over all patients in the hospital to get a value.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;To assess hospital performance in any reporting period, the model coefficients are re-estimated using the years of data in that period. See the &quot;Description of Allowance for Patient Factors&quot; field for risk adjustment details. See the &lt;a href=&quot;disclaimer.aspx?redirect=http://www.qualitynet.org/dcs/ContentServer?c=Page&amp;amp;pagename=QnetPublic%2FPage%2FQnetTier3&amp;amp;cid=1219069855841&quot; title=&quot;QualityNet Web site&quot;&gt;2010 Measures Maintenance Technical Report: Acute Myocardial Infarction, Heart Failure, and Pneumonia 30-Day Risk-standardized Readmission Measures&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt; for more details.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section573'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_SectionName&quot;&gt;Evidence Supporting the Measure&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3027'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl00_FieldName&quot;&gt;Type of Evidence Supporting the Criterion of Quality for the Measure&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;ul&gt;&lt;li&gt;One or more research studies published in a National Library of Medicine (NLM) indexed, peer-reviewed journal&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3501'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl01_FieldName&quot;&gt;Other Characteristics Concerning the Measure&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;

    &lt;li&gt;Heart failure (HF) is the most common principal hospital discharge diagnosis among Medicare beneficiaries, and is among the most expensive conditions billed to Medicare (Andrews and Elixhauser, 2007). Readmission rates following discharge for HF are high. All-cause 30-day readmission rates per thousand patients discharged with HF increased by 11 percent between 1992 and 2001 (CMS/MQMS, 2006). &lt;/li&gt;

    &lt;li&gt;HF is the most common principal hospital discharge diagnosis among Medicare beneficiaries, and is among the most expensive conditions billed to Medicare (Andrews and Elixhauser, 2007). Readmission rates following discharge for HF are high. All-cause 30-day readmission rates per thousand patients discharged with HF increased by 11 percent between 1992 and 2001 (Centers for Medicare &amp;amp; Medicaid Services [CMS]/Medicare Quality Monitoring System [MQMS], 2006). &lt;/li&gt;

    &lt;li&gt;Readmission rates are influenced by the quality of inpatient and outpatient care, the availability and use of effective disease management programs, and the bed capacity of the local health care system. Some of the variation in readmissions may be attributable to delivery system characteristics (Fisher et al., 1994). Also, interventions during and after a hospitalization can be effective in reducing readmission rates in geriatric populations generally (Benbassat and Taragin, 2000; Naylor et al., 1999; Coleman et al., 2006) and for elderly HF patients specifically (Phillips et al., 2004; Naylor et al., 2004; Koelling, 2005; Krumholz et al., 2002; Nohria et al., 2002; Rich et al., 1995). Moreover, such interventions can be cost saving (Coleman et al., 2006; Naylor et al., 1999; Krumholz et al., 2002; Naylor et al., 2004; Rich et al., 1995; Koelling, 2005; Phillips et al., 2004). Tracking readmissions also emphasizes improvement in care transitions and care coordination. Although discharge planning is required by Medicare as a condition of participation for hospitals, transitional care focuses more broadly on &quot;hand-offs&quot; of care from one setting to another, and may have implications for quality and costs (Coleman, 2005). Despite positive results in disease management studies, many post-hospital HF management programs have been discontinued, most often due to financial considerations (Seow et al., 2006). &lt;/li&gt;

    &lt;li&gt;The Medicare Payment Advisory Commission (MedPAC) has called for hospital-specific public reporting of readmission rates, identifying HF as one of seven conditions that account for nearly 30% of potentially preventable readmissions in the 15-day window after initial hospital discharge (MedPAC, 2007). MedPAC finds that readmissions are common, costly, and often preventable. Based on 2005 Medicare data, MedPAC estimates that about 12.5% of Medicare HF admissions were followed by a potentially preventable readmission within 15 days, accounting for more than 90,000 admissions at a cost of $590 million. &lt;/li&gt;

&lt;/ul&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field3502'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_FieldName&quot;&gt;Evidence for Other Characteristics Concerning the Measure&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Andrews RM, Elixhauser A. The national hospital bill: growth trends and 2005 update on the most expensive conditions by payer. Rockville (MD): Agency for Healthcare Research and Quality (AHRQ); 2007 Dec. &amp;nbsp;(HCUP statistical brief; no. 42).&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl01_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Benbassat J, Taragin M. Hospital readmissions as a measure of quality of health care: advantages and limitations. Arch Intern Med&amp;nbsp;2000 Apr 24;160(8):1074-81. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=10789599&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl02_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Centers for Medicare &amp; Medicaid Services (CMS). Medicare quality monitoring system (MQMS). Available at: http://www.cms.hhs.gov/QualityInitiativesGenInfo/15_MQMS.asp..&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl03_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Coleman EA, Parry C, Chalmers S, Min SJ. The care transitions intervention: results of a randomized controlled trial. Arch Intern Med&amp;nbsp;2006 Sep 25;166(17):1822-8. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=17000937&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl04_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Coleman EA. Background paper on transitional care performance measurement. Appendix I. In: Institute of Medicine, performance measurement: accelerating improvement. Washington (DC): National Academy Press; 2005. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl05_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Fisher ES, Wennberg JE, Stukel TA, Sharp SM. Hospital readmission rates for cohorts of Medicare beneficiaries in Boston and New Haven. N Engl J Med&amp;nbsp;1994 Oct 13;331(15):989-95. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=8084356&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl06_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Koelling TM. Multifaceted outpatient support can improve outcomes for people with heart failure. Commentary. Evid Based Cardiovasc Med&amp;nbsp;2005 Jun;9(2):138-41. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=16380013&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl07_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Krumholz HM, Amatruda J, Smith GL, Mattera JA, Roumanis SA, Radford MJ, Crombie P, Vaccarino V. Randomized trial of an education and support intervention to prevent readmission  of patients with heart failure. J Am Coll Cardiol&amp;nbsp;2002 Jan 2;39(1):83-9. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=11755291&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl08_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Medicare Payment Advisory Commission (MeDPAC). Report to congress: promoting greater efficiency in Medicare. Medicare Payment Advisory Commission (MeDPAC); 2007. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl09_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Naylor MD, Brooten D, Campbell R, Jacobsen BS, Mezey MD, Pauly MV, Schwartz JS. Comprehensive discharge planning and home follow-up of hospitalized elders: a randomized clinical trial. JAMA&amp;nbsp;1999 Feb 17;281(7):613-20. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=10029122&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl10_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Naylor MD, Brooten DA, Campbell RL, Maislin G, McCauley KM, Schwartz JS. Transitional care of older adults hospitalized with heart failure: a randomized,  controlled trial. J Am Geriatr Soc&amp;nbsp;2004 May;52(5):675-84. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15086645&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl11_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Nohria A, Lewis E, Stevenson LW. Medical management of advanced heart failure. JAMA&amp;nbsp;2002 Feb 6;287(5):628-40. [99 references] &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=11829703&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl12_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Phillips CO, Wright SM, Kern DE, Singa RM, Shepperd S, Rubin HR. Comprehensive discharge planning with postdischarge support for older patients with congestive heart failure: a meta-analysis. JAMA&amp;nbsp;2004 Mar 17;291(11):1358-67. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15026403&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl13_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Rich MW, Beckham V, Wittenberg C, Leven CL, Freedland KE, Carney RM. A multidisciplinary intervention to prevent the readmission of elderly patients with congestive heart failure. N Engl J Med&amp;nbsp;1995;333(18):1190-5. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=7565975&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl02_rptValues_ctl14_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Seow H, Phillips CO, Rich MW, Spertus JA, Krumholz HM, Lynn J. Isolation of health services research from practice and policy: the example of chronic heart failure management. J Am Geriatr Soc&amp;nbsp;2006 Mar;54(3):535-40. &lt;a href=&quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=16551325&quot; target=&quot;_blank&quot;&gt;PubMed&lt;/a&gt; &lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field3072'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl03_FieldName&quot;&gt;Extent of Measure Testing&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;To evaluate the performance of the model used for 2010 public reporting, we fit the condition-specific risk standardized readmission model to three single-year datasets (2006, 2007, and 2008) and to the combined three-year 2006-2008 calendar year dataset. We re-estimated the model variable coefficients and examined the model performance in each of these datasets. We also examined trends in the frequency of patient risk factors.&lt;/p&gt;

&lt;p&gt;Specifically, we:&lt;/p&gt;

&lt;ul style=&quot;list-style-type: disc;&quot;&gt;

    &lt;li&gt;Assessed model hierarchical generalized linear model (HGLM) performance in terms of discriminant and predictive ability and overall fit for each of the single-year datasets (2006, 2007, and 2008) and for the combined 2006-2008 calendar year dataset. &lt;/li&gt;

    &lt;li&gt;Fitted HGLMs for the same datasets and compared both fixed-effect estimates and hospital-level covariance estimates across the different time periods. &lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;We additionally assessed the performance of the measure using preliminary public reporting data for admissions with discharges between July 1, 2006, and June 30, 2009. The results were substantively similar to those for the 2006-2008 calendar year dataset (data not shown). &lt;/p&gt;

&lt;p&gt;We computed a summary statistic for assessing model performance: the area under the receiver operating characteristic (ROC) curve (c-statistic), which is an indicator of the model's discriminant ability or ability to correctly classify those who are and are not readmitted within 30 days (values range from 0.5 meaning no better than chance to 1.0 meaning perfect discrimination). The area under the ROC curve (c-statistic) remained constant at 0.60. For the model using the 2006-2008 calendar year dataset, the observed readmission rate was 16.0% among patients in the lowest predicted decile and 38.7% among patients in the highest predicted decile, a range of 22.7%.&lt;/p&gt;

&lt;p&gt;Examining the overall distribution of the cause risk-standardized readmission rate (RSRR) based on the 2006-2008 calendar year dataset, the 25th and 75th percentiles were 23.5% and 25.7%, respectively. The odds of all-cause readmission if treated at a hospital one standard deviation above the national average was 1.37 times higher than the odds of all-cause readmission if treated at a hospital one standard deviation below the national average. If there were no systematic differences between hospitals, the between-hospital variance would be zero and the odds ratio would be 1.0.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field3007'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl04_FieldName&quot;&gt;Evidence for Extent of Measure Testing&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl03_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Bernheim SM, Lin Z, Bhat KR, Savage SV, Wang Y, Grady JN, Desai MM, Wang Y, Wang C, Gao J, Normand SL, Drye EE, Krumholz HM. 2010 measures maintenance technical report: acute myocardial infarction, heart failure, and pneumonia 30-day risk-standardized readmission measures. Baltimore (MD): Centers for Medicare &amp; Medicaid Services; 2010 Mar 31. 52 p. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section580'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_SectionName&quot;&gt;State of Use of the Measure&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3029'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl00_FieldName&quot;&gt;State of Use&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;Current routine use&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3030'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_FieldName&quot;&gt;Current Use&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Collaborative inter-organizational quality improvement&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_rptValues_ctl01_Value&quot;&gt;External oversight/Medicare &lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_rptValues_ctl02_Value&quot;&gt;Internal quality improvement&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_rptValues_ctl03_Value&quot;&gt;National reporting&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl04_rptField_ctl01_rptValues_ctl04_Value&quot;&gt;Pay-for-reporting&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section583'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_SectionName&quot;&gt;Application of the Measure in its Current Use&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3031'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl00_FieldName&quot;&gt;Measurement Setting&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;Hospitals&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3032'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl01_FieldName&quot;&gt;Professionals Involved in Delivery of Health Services&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Does not apply to this measure (e.g., measure is not provider specific)&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field3033'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl02_FieldName&quot;&gt;Least Aggregated Level of Services Delivery Addressed&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;Single Health Care Delivery or Public Health Organizations&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field3505'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl03_FieldName&quot;&gt;Statement of Acceptable Minimum Sample Size&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;Unspecified&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field41'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl04_FieldName&quot;&gt;Target Population Age&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Age greater than or equal to 65 years&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl05_divOuter&quot;&gt;

                                &lt;a id='Field42'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl05_FieldName&quot;&gt;Target Population Gender&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl05_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl05_rptField_ctl05_rptValues_ctl00_Value&quot;&gt;Either male or female&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section590'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_SectionName&quot;&gt;Institute of Medicine (IOM) National Health Care Quality Report Categories&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3163'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl00_FieldName&quot;&gt;IOM Care Need&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;Getting Better&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3164'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl01_FieldName&quot;&gt;IOM Domain&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl06_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Effectiveness&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section593'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_SectionName&quot;&gt;Data Collection for the Measure&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3506'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl00_FieldName&quot;&gt;Case Finding Period&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;3 years&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3054'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl01_FieldName&quot;&gt;Denominator Sampling Frame&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Patients associated with provider&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field55'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl02_FieldName&quot;&gt;Denominator Inclusions/Exclusions&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;&lt;strong&gt;Inclusions&lt;/strong&gt;&lt;br /&gt;

This cohort includes admissions for Medicare fee-for-service beneficiaries aged greater than or equal to 65 years with a principal discharge diagnosis of heart failure (HF)* and with a complete claims history for 12 months prior to admission&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;*International Classification of Diseases, Ninth Revision, Clinical Modification (ICD-9-CM) codes that define the patient cohort:&lt;/p&gt;

&lt;ul style=&quot;list-style-type: disc;&quot; class=&quot;Note&quot;&gt;

    &lt;li&gt;402.01: Hypertensive heart disease, malignant, with heart failure &lt;/li&gt;

    &lt;li&gt;402.11: Hypertensive heart disease, benign, with heart failure &lt;/li&gt;

    &lt;li&gt;402.91: Hypertensive heart disease, unspecified, with heart failure &lt;/li&gt;

    &lt;li&gt;404.01: Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified &lt;/li&gt;

    &lt;li&gt;404.03: Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease &lt;/li&gt;

    &lt;li&gt;404.11: Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified &lt;/li&gt;

    &lt;li&gt;404.13: Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease &lt;/li&gt;

    &lt;li&gt;404.91: Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified &lt;/li&gt;

    &lt;li&gt;404.93: Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease &lt;/li&gt;

    &lt;li&gt;428.xx: Heart Failure &lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Exclusions&lt;/strong&gt;&lt;br /&gt;

Cohort exclusions (excluded admissions):&lt;/p&gt;

&lt;ul style=&quot;list-style-type: disc;&quot;&gt;

    &lt;li&gt;Admissions for patients with an in-hospital death (because they are not eligible for readmission). &lt;/li&gt;

    &lt;li&gt;Admissions for patients having a principal diagnosis of HF during the index hospitalization and subsequently transferred to another acute care facility are excluded (because we are focusing on discharges to non-acute care settings). &lt;/li&gt;

    &lt;li&gt;Admissions for patients who are discharged against medical advice (AMA) (because providers did not have the opportunity to deliver full care and prepare the patient for discharge). &lt;/li&gt;

    &lt;li&gt;Admissions for patients without at least 30 days post-discharge enrollment in fee-for-service Medicare (because the 30-day readmission outcome cannot be assessed in this group). &lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;In addition, if a patient has one or more additional HF admissions within 30 days of discharge from an index HF admission, we do not consider the additional HF admissions as index admissions (they are considered as potential readmissions). Thus, any HF admission is either an index admission or a potential readmission, but not both.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field3507'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl03_FieldName&quot;&gt;Exclusions/Exceptions&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;Patient factors addressed&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field3057'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_FieldName&quot;&gt;Denominator (Index) Event or Characteristic&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;Clinical Condition&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_rptValues_ctl01_Value&quot;&gt;Institutionalization&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl04_rptValues_ctl02_Value&quot;&gt;Patient/Individual (Consumer) Characteristic&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl05_divOuter&quot;&gt;

                                &lt;a id='Field3058'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl05_FieldName&quot;&gt;Denominator Time Window&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl05_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl05_rptValues_ctl00_Value&quot;&gt;Time window precedes index event&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl06_divOuter&quot;&gt;

                                &lt;a id='Field59'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl06_FieldName&quot;&gt;Numerator Inclusions/Exclusions&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl06_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl06_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;&lt;strong&gt;Inclusions&lt;/strong&gt;&lt;br /&gt;

The hospital-specific risk-standardized readmission rate (RSRR) is calculated as the ratio of predicted to expected readmissions, multiplied by the national unadjusted rate. The &quot;numerator&quot; of the ratio component is the predicted number of readmissions for each hospital within 30 days given the hospital's performance with its observed case mix.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;&lt;strong&gt;Note&lt;/strong&gt;: This outcome measure does not have a traditional numerator and denominator like a core process measure (e.g., percentage of adult patients with diabetes aged 18-75 years receiving one or more hemoglobin A1c tests per year); thus, we are using this field to define our statistically-adjusted outcome measure.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;Hierarchical logistic regression modeling is used to calculate a hospital-specific RSRR. The RSRR is calculated as the ratio of the number of &quot;predicted&quot; to the number of &quot;expected&quot; readmissions, multiplied by the national unadjusted readmission rate. For each hospital, the &quot;numerator&quot; of the ratio is the number of readmissions within 30 days predicted on the basis of the hospital's performance with its observed case mix, and the &quot;denominator&quot; is the number of readmissions expected on the basis of the nation's performance with that hospital's case mix. This approach is analogous to a ratio of &quot;observed&quot; to &quot;expected&quot; used in other types of statistical analyses. It conceptually allows for a comparison of a particular hospital's performance given its case-mix to an average hospital's performance with the same case mix. Thus a lower ratio indicates lower-than-expected readmission or better quality and a higher ratio indicates higher-than-expected readmission or worse quality.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;The predicted hospital outcome (the numerator) is calculated by regressing the risk factors and the hospital-specific intercept on the risk of readmission, multiplying the estimated regression coefficients by the patient characteristics in the hospital, transforming, and then summing over all patients attributed to the hospital to get a value. The expected number of readmissions (the denominator) is obtained by regressing the risk factors and a common intercept on the readmission outcome using all hospitals in our sample, multiplying the subsequent estimated regression coefficients by the patient characteristics observed in the hospital, transforming, and then summing over all patients in the hospital to get a value.&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;To assess hospital performance in any reporting period, the model coefficients are re-estimated using the years of data in that period. See the &quot;Description of Allowance for Patient Factors&quot; field for risk adjustment details. See the &lt;a href=&quot;disclaimer.aspx?redirect=http://www.qualitynet.org/dcs/ContentServer?c=Page&amp;amp;pagename=QnetPublic%2FPage%2FQnetTier3&amp;amp;cid=1219069855841&quot; title=&quot;QualityNet Web site&quot;&gt;2010 Measures Maintenance Technical Report: Acute Myocardial Infarction, Heart Failure, and Pneumonia 30-Day Risk-standardized Readmission Measures&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt; for more details.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Exclusions&lt;/strong&gt;&lt;br /&gt;

Unspecified&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl07_divOuter&quot;&gt;

                                &lt;a id='Field3061'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl07_FieldName&quot;&gt;Numerator Search Strategy&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl07_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl07_rptValues_ctl00_Value&quot;&gt;Fixed time period&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl08_divOuter&quot;&gt;

                                &lt;a id='Field3062'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl08_FieldName&quot;&gt;Data Source&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl08_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl08_rptValues_ctl00_Value&quot;&gt;Administrative clinical data&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl09_divOuter&quot;&gt;

                                &lt;a id='Field3065'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl09_FieldName&quot;&gt;Type of Health State&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl09_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl09_rptValues_ctl00_Value&quot;&gt;Adverse Health State&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl10_divOuter&quot;&gt;

                                &lt;a id='Field3066'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl10_FieldName&quot;&gt;Instruments Used and/or Associated with the Measure&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl10_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl07_rptField_ctl10_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;None&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section605'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_SectionName&quot;&gt;Computation of the Measure&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field3508'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl00_FieldName&quot;&gt;Measure Specifies Disaggregation&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;Does not apply to this measure&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field3067'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl01_FieldName&quot;&gt;Scoring&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;Rate/Proportion&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field3068'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl02_FieldName&quot;&gt;Interpretation of Score&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;Desired value is a lower score&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field3090'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl03_FieldName&quot;&gt;Allowance for Patient or Population Factors&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;Risk adjustment devised specifically for this measure/condition&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field3069'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl04_FieldName&quot;&gt;Description of Allowance for Patient or Population Factors&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Our approach to risk adjustment was tailored to and appropriate for a publicly reported outcome measure, as articulated in the American Heart Association (AHA) Scientific Statement, &quot;Standards for Statistical Models Used for Public Reporting of Health Outcomes&quot; (Krumholz et al., 2006).&lt;/p&gt;

&lt;p&gt;The measure employs a hierarchical logistic regression model (a form of hierarchical generalized linear model [HGLM]) to create a hospital level 30-day risk-standardized readmission rate (RSRR). This approach to modeling appropriately accounts for the structure of the data (patients clustered within hospitals), the underlying risk due to patients' comorbidities, and sample size at a given hospital when estimating hospital readmission rates. In brief, the approach simultaneously models two levels (patient and hospital) to account for the variance in patient outcomes within and between hospitals (Normand et al., 2007). At the patient level, each model adjusts the log-odds of readmission within 30-days of admission for age, sex, selected clinical covariates and a hospital-specific intercept. The second level models the hospital-specific intercepts as arising from a normal distribution. The hospital intercept, or hospital specific effect, represents the hospital contribution to the risk of readmission, after accounting for patient risk and sample size, and can be inferred as a measure of quality. The hospital-specific intercepts are given a distribution in order to account for the clustering (non-independence) of patients within the same hospital. If there were no differences among hospitals, then after adjusting for patient risk, the hospital intercepts should be identical across all hospitals.&lt;/p&gt;

&lt;p&gt;Refer to the original measure documentation for the final set of risk-adjustment variables included.&lt;/p&gt;

&lt;p&gt;Candidate and Final Risk-adjustment Variables: Candidate variables were patient-level risk-adjustors that are expected to be predictive of readmission, based on empirical analysis, prior literature, and clinical judgment, including demographic factors (age, sex) and indicators of comorbidity and disease severity. For each patient, covariates were obtained from Medicare claims extending 12 months prior to and including the index admission. The model adjusted for case differences based on the clinical status of the patient at the time of admission. We used condition categories (CCs), which are clinically meaningful groupings of more than 15,000 International Classification of Diseases, Ninth Revision, Clinical Modification (ICD-9-CM) diagnosis codes. We did not risk-adjust for CCs that were possible adverse events of care and that were only recorded in the index admission. In addition, only comorbidities that conveyed information about the patient at that time or in the 12-months prior, and not complications that arose during the course of the hospitalization were included in the risk-adjustment.&lt;/p&gt;

&lt;p&gt;The final set of risk-adjustment variables included:&lt;/p&gt;

&lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; summary=&quot;Final Set of Risk-adjustment Variables&quot; cellpadding=&quot;0&quot;&gt;

    &lt;tbody&gt;

        &lt;tr&gt;

            &lt;th valign=&quot;top&quot; scope=&quot;row&quot;&gt;Demographic&lt;/th&gt;

            &lt;td valign=&quot;top&quot;&gt;

            &lt;ul style=&quot;list-style-type: disc;&quot;&gt;

                &lt;li&gt;Age-65 (years above 65, continuous) &lt;/li&gt;

                &lt;li&gt;Male &lt;/li&gt;

            &lt;/ul&gt;

            &lt;/td&gt;

        &lt;/tr&gt;

        &lt;tr&gt;

            &lt;th valign=&quot;top&quot; scope=&quot;row&quot;&gt;Cardiovascular&lt;/th&gt;

            &lt;td valign=&quot;top&quot;&gt;

            &lt;ul style=&quot;list-style-type: disc;&quot;&gt;

                &lt;li&gt;History of coronary artery bypass grafting (CABG) surgery &lt;/li&gt;

                &lt;li&gt;Congestive heart failure &lt;/li&gt;

                &lt;li&gt;Acute coronary syndrome &lt;/li&gt;

                &lt;li&gt;Arrhythmias &lt;/li&gt;

                &lt;li&gt;Cardio-respiratory failure and shock &lt;/li&gt;

                &lt;li&gt;Valvular and rheumatic heart disease &lt;/li&gt;

                &lt;li&gt;Vascular or circulatory disease &lt;/li&gt;

                &lt;li&gt;Chronic atherosclerosis &lt;/li&gt;

                &lt;li&gt;Other and unspecified heart disease &lt;/li&gt;

            &lt;/ul&gt;

            &lt;/td&gt;

        &lt;/tr&gt;

        &lt;tr&gt;

            &lt;th valign=&quot;top&quot; scope=&quot;row&quot;&gt;Comorbidity&lt;/th&gt;

            &lt;td valign=&quot;top&quot;&gt;

            &lt;ul style=&quot;list-style-type: disc;&quot;&gt;

                &lt;li&gt;Hemiplegia, paraplegia, paralysis, functional disability &lt;/li&gt;

                &lt;li&gt;Stroke &lt;/li&gt;

                &lt;li&gt;Renal failure &lt;/li&gt;

                &lt;li&gt;Chronic obstructive pulmonary disease (COPD) &lt;/li&gt;

                &lt;li&gt;Diabetes mellitus (DM) and DM complications &lt;/li&gt;

                &lt;li&gt;Disorders of fluid/electrolyte/acid-base &lt;/li&gt;

                &lt;li&gt;Other urinary tract disorders &lt;/li&gt;

                &lt;li&gt;Decubitus ulcer or chronic skin ulcer &lt;/li&gt;

                &lt;li&gt;Other gastrointestinal disorders &lt;/li&gt;

                &lt;li&gt;Peptic ulcer, hemorrhage, other specified gastrointestinal disorders &lt;/li&gt;

                &lt;li&gt;Severe hematological disorders &lt;/li&gt;

                &lt;li&gt;Nephritis &lt;/li&gt;

                &lt;li&gt;Dementia and senility &lt;/li&gt;

                &lt;li&gt;Metastatic cancer and acute leukemia &lt;/li&gt;

                &lt;li&gt;Cancer &lt;/li&gt;

                &lt;li&gt;Liver and biliary disease &lt;/li&gt;

                &lt;li&gt;End-stage renal disease or dialysis &lt;/li&gt;

                &lt;li&gt;Asthma &lt;/li&gt;

                &lt;li&gt;Iron deficiency and other/unspecified anemias and blood disease &lt;/li&gt;

                &lt;li&gt;Pneumonia &lt;/li&gt;

                &lt;li&gt;Drug/alcohol abuse/dependence/psychosis &lt;/li&gt;

                &lt;li&gt;Major psychiatric disorders &lt;/li&gt;

                &lt;li&gt;Depression &lt;/li&gt;

                &lt;li&gt;Other psychiatric disorders &lt;/li&gt;

                &lt;li&gt;Fibrosis of lung and other chronic lung disorders &lt;/li&gt;

                &lt;li&gt;Protein-calorie malnutrition &lt;/li&gt;

            &lt;/ul&gt;

            &lt;/td&gt;

        &lt;/tr&gt;

    &lt;/tbody&gt;

&lt;/table&gt;

&lt;p&gt;Full details of the development of the risk-standardization model for this measure are available at &lt;a href=&quot;disclaimer.aspx?redirect=http://www.qualitynet.org&quot; title=&quot;QualityNet Web site&quot;&gt;www.qualitynet.org&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_divOuter&quot;&gt;

                                &lt;a id='Field3070'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_FieldName&quot;&gt;Standard of Comparison&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_rptValues_ctl00_Value&quot;&gt;External comparison at a point in, or interval of, time&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_rptValues_ctl01_Value&quot;&gt;External comparison of time trends&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl08_rptField_ctl05_rptValues_ctl02_Value&quot;&gt;Internal time comparison&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section615'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_SectionName&quot;&gt;Identifying Information&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field73'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl00_FieldName&quot;&gt;Original Title&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;READM-30-HF: thirty-day all-cause risk standardized readmission rate following heart failure (HF) hospitalization.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl01_divOuter&quot;&gt;

                                &lt;a id='Field74'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl01_FieldName&quot;&gt;Measure Collection Name&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl01_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl01_rptValues_ctl00_Value&quot;&gt;&lt;a href=&quot;/browse/by-organization-indiv.aspx?objid=25813&quot;&gt;National Hospital Inpatient Quality Measures&lt;/a&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl02_divOuter&quot;&gt;

                                &lt;a id='Field75'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl02_FieldName&quot;&gt;Measure Set Name&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl02_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl02_rptValues_ctl00_Value&quot;&gt;&lt;a href=&quot;/browse/by-organization-indiv.aspx?objid=26098&quot;&gt;CMS Readmission Measures&lt;/a&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl03_divOuter&quot;&gt;

                                &lt;a id='Field16'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl03_FieldName&quot;&gt;Submitter&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl03_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl03_rptValues_ctl00_Value&quot;&gt;Centers for Medicare &amp; Medicaid Services/The Joint Commission&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl04_divOuter&quot;&gt;

                                &lt;a id='Field17'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl04_FieldName&quot;&gt;Developer&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl04_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl04_rptValues_ctl00_Value&quot;&gt;Centers for Medicare &amp; Medicaid Services - Federal Government Agency [U.S.]&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl04_rptValues_ctl01_Value&quot;&gt;Yale-New Haven Health Services Corporation/Center for Outcomes Research and Evaluation under contract to Centers for Medicare &amp; Medicaid Services - Academic Affiliated Research Institute&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl05_divOuter&quot;&gt;

                                &lt;a id='Field79'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl05_FieldName&quot;&gt;Funding Source(s)&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl05_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl05_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Centers for Medicare &amp; Medicaid Services (CMS)&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl06_divOuter&quot;&gt;

                                &lt;a id='Field80'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl06_FieldName&quot;&gt;Composition of the Group that Developed the Measure&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl06_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl06_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This measure was developed by a team of clinical and statistical experts from Yale University/Yale-New Haven Hospital Center for Outcomes Research and Evaluation (Yale-CORE) and Harvard University, through a Centers for Medicare &amp; Medicaid Services (CMS) contract with the Colorado Foundation for Medicare Care (CFMC).&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl07_divOuter&quot;&gt;

                                &lt;a id='Field81'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl07_FieldName&quot;&gt;Financial Disclosures/Other Potential Conflicts of Interest&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl07_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl07_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Unspecified&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl08_divOuter&quot;&gt;

                                &lt;a id='Field82'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl08_FieldName&quot;&gt;Endorser&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl08_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl08_rptValues_ctl00_Value&quot;&gt;National Quality Forum&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl09_divOuter&quot;&gt;

                                &lt;a id='Field3510'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl09_FieldName&quot;&gt;Date of Endorsement&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl09_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl09_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;2010 Sep 12&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_divOuter&quot;&gt;

                                &lt;a id='Field3083'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_FieldName&quot;&gt;Measure Initiative(s)&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_rptValues_ctl00_Value&quot;&gt;Hospital Compare&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_rptValues_ctl01_Value&quot;&gt;Hospital Quality Alliance (HQA)&lt;br /&gt;&lt;/span&gt; 

                                          

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl10_rptValues_ctl02_Value&quot;&gt;Hospital Inpatient Quality Reporting Program&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl11_divOuter&quot;&gt;

                                &lt;a id='Field19'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl11_FieldName&quot;&gt;Adaptation&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl11_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl11_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This measure was not adapted from another source.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl12_divOuter&quot;&gt;

                                &lt;a id='Field3086'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl12_FieldName&quot;&gt;Date of Most Current Version in NQMC&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl12_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl12_rptValues_ctl00_Value&quot;&gt;2010 Apr&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl13_divOuter&quot;&gt;

                                &lt;a id='Field3511'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl13_FieldName&quot;&gt;Measure Maintenance&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl13_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl13_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Unspecified&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl14_divOuter&quot;&gt;

                                &lt;a id='Field3512'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl14_FieldName&quot;&gt;Date of Next Anticipated Revision&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl14_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl14_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;Unspecified&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl15_divOuter&quot;&gt;

                                &lt;a id='Field20'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl15_FieldName&quot;&gt;Measure Status&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl15_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl15_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This is the current release of the measure.&lt;/p&gt;

&lt;p&gt;This measure updates a previous version: Specifications manual for national hospital inpatient quality measures, version 3.0b. Centers for Medicare &amp;amp; Medicaid Services (CMS), The Joint Commission; 2009 Oct. various p.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl16_divOuter&quot;&gt;

                                &lt;a id='Field1'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl16_FieldName&quot;&gt;Source(s)&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl16_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl16_rptValues_ctl00_Value&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Specifications manual for national hospital inpatient quality measures, version 3.1a. Centers for Medicare &amp; Medicaid Services (CMS), The Joint Commission; 2010 Apr 1. various p. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl17_divOuter&quot;&gt;

                                &lt;a id='Field14'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl17_FieldName&quot;&gt;Measure Availability&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl17_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl17_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;The individual measure, &quot;READM-30-HF: Thirty-day All-cause Risk Standardized Readmission Rate Following Heart Failure (HF) Hospitalization,&quot; is published in &quot;Specifications Manual for National Hospital Inpatient Quality Measures.&quot; This document is available from &lt;a href=&quot;disclaimer.aspx?redirect=http://www.jointcommission.org/specifications_manual_for_national_hospital_inpatient_quality_measures/&quot; title=&quot;The Joint Commission Web site&quot;&gt;The Joint Commission Web site&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;. Information is also available from the &lt;a href=&quot;disclaimer.aspx?redirect=http://www.qualitynet.org/dcs/ContentServer?c=Page&amp;amp;pagename=QnetPublic%2FPage%2FQnetTier2&amp;amp;cid=1141662756099&quot; title=&quot;QualityNet Web site&quot;&gt;QualityNet Web site&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;. Check The Joint Commission Web site and QualityNet Web site regularly for the most recent version of the specifications manual and for the applicable dates of discharge.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl18_divOuter&quot;&gt;

                                &lt;a id='Field87'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl18_FieldName&quot;&gt;NQMC Status&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl18_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl18_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;This NQMC summary was completed by ECRI Institute on July 13, 2009. This information was verified by the measure developer on December 29, 2009. This NQMC summary was updated by ECRI Institute on November 8, 2010. This information was verified by the measure developer on December 17, 2010. This NQMC summary was retrofitted into the new template on May 19, 2011.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl19_divOuter&quot;&gt;

                                &lt;a id='Field88'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl19_FieldName&quot;&gt;Copyright Statement&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl19_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl09_rptField_ctl19_rptValues_ctl00_Value&quot;&gt;&lt;div class=&quot;content_para&quot;&gt;&lt;p&gt;The Specifications Manual for National Hospital Inpatient Quality Measures [Version 3.1a, April, 2010] is the collaborative work of the Centers for Medicare &amp;amp; Medicaid Services and The Joint Commission. The Specifications Manual is periodically updated by the Centers for Medicare &amp;amp; Medicaid Services and The Joint Commission. Users of the Specifications Manual for National Hospital Quality Measures should periodically verify that the most up-to-date version is being utilized.&lt;/p&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;&lt;tr&gt;

		&lt;td&gt;

                &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_divSectionName&quot; class=&quot;SectionLbl&quot;&gt;

                    &lt;a id='Section99999'&gt;&lt;/a&gt;

                    &lt;div class=&quot;SectionBackToTop&quot;&gt;&lt;a href=&quot;#top&quot;&gt;Back to top&lt;/a&gt;&lt;/div&gt;

                    &lt;div class=&quot;SectionTitle&quot;&gt;&lt;h2&gt;&lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_SectionName&quot;&gt;Disclaimer&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;

                &lt;/div&gt;

                &lt;div&gt;

                    

                            &lt;div id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_rptField_ctl00_divOuter&quot;&gt;

                                &lt;a id='Field99999'&gt;&lt;/a&gt;

                                &lt;div class=&quot;fieldName&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_rptField_ctl00_FieldName&quot;&gt;NQMC Disclaimer&lt;/span&gt; 

                                     

                                     

                                &lt;/div&gt;

                                &lt;div class=&quot;fieldData&quot;&gt;

                                    &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_rptField_ctl00_nofieldtext&quot;&gt;&lt;/span&gt; 

                                      

                                            &lt;span id=&quot;ctl00_ContentPlaceHolder1_dlXML_ctl10_rptField_ctl00_rptValues_ctl00_Value&quot;&gt;&lt;div id=&quot;divDisclaimerShort&quot;&gt;&lt;p&gt;The National Quality Measures Clearinghouseâ„¢ (NQMC) does not develop, produce, approve, or endorse the measures represented on this site.&lt;/p&gt;&lt;a id=&quot;aShowDisc&quot; class=&quot;javascriptLink&quot; onclick=&quot;showDisclaimer();&quot;&gt;&lt;b&gt;Read full disclaimer...&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;display:none;&quot; id=&quot;divDisclaimerAll&quot;&gt;&lt;p&gt;The National Quality Measures Clearinghouseâ„¢ (NQMC) does not develop, produce, approve, or endorse the measures represented on this site.&lt;/p&gt; &lt;p&gt;All measures summarized by NQMC and hosted on our site are produced under the auspices of medical specialty societies, relevant professional associations, public and private organizations, other government agencies, health care organizations or plans, individuals, and similar entities.&lt;/p&gt; &lt;p&gt;Measures represented on the NQMC Web site are submitted by measure developers, and are screened solely to determine that they meet the NQMC Inclusion Criteria which may be found at &lt;a href=&quot;../about/inclusion-criteria.aspx&quot;&gt;http://www.qualitymeasures.ahrq.gov/about/inclusion-criteria.aspx&lt;/a&gt;&amp;nbsp;&lt;img alt=&quot;External Web Site Policy&quot; src=&quot;/images/icon_externallink.gif&quot; /&gt;.&lt;/p&gt; &lt;p&gt;NQMC, AHRQ, and its contractor ECRI Institute make no warranties concerning the content or its reliability and/or validity of the quality measures and related materials represented on this site. Moreover, the views and opinions of developers or authors of measures represented on this site do not necessarily state or reflect those of NQMC, AHRQ, or its contractor, ECRI Institute, and inclusion or hosting of measures in NQMC may not be used for advertising or commercial endorsement purposes.&lt;/p&gt; &lt;p&gt;Readers with questions regarding measure content are directed to contact the measure developer.&lt;/p&gt;&lt;a id=&quot;aHideDisc&quot; onclick=&quot;hideDisclaimer();&quot; class=&quot;javascriptLink&quot;&gt;&lt;b&gt;Hide...&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;/span&gt; 

                                        

                                &lt;/div&gt;

                            &lt;/div&gt;

                        

                &lt;/div&gt;

                

                

                

            &lt;/td&gt;

	&lt;/tr&gt;

&lt;/table&gt;

         

    &lt;/div&gt;

    &lt;div id=&quot;ctl00_ContentPlaceHolder1_pnlDownload&quot;&gt;

	

         

            

         

             

    

&lt;/div&gt;



    &lt;div id=&quot;ctl00_ContentPlaceHolder1_RadWindowManager&quot; style=&quot;display:none;&quot;&gt;

	&lt;div id=&quot;ctl00_ContentPlaceHolder1_Help&quot; style=&quot;display:none;&quot;&gt;

		&lt;div id=&quot;ctl00_ContentPlaceHolder1_Help_C&quot;&gt;



		&lt;/div&gt;&lt;input id=&quot;ctl00_ContentPlaceHolder1_Help_ClientState&quot; name=&quot;ctl00_ContentPlaceHolder1_Help_ClientState&quot; type=&quot;hidden&quot; /&gt;

	&lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_RadWindowManager_alerttemplate&quot; style=&quot;display:none;&quot;&gt;

		&lt;div class=&quot;rwDialogPopup radalert&quot;&gt;			

			&lt;div class=&quot;rwDialogText&quot;&gt;

			{1}				

			&lt;/div&gt;

			

			&lt;div&gt;

				&lt;a  onclick=&quot;$find('{0}').close();&quot;

				class=&quot;rwPopupButton&quot; href=&quot;javascript:void(0);&quot;&gt;

					&lt;span class=&quot;rwOuterSpan&quot;&gt;

						&lt;span class=&quot;rwInnerSpan&quot;&gt;##LOC[OK]##&lt;/span&gt;

					&lt;/span&gt;

				&lt;/a&gt;				

			&lt;/div&gt;

		&lt;/div&gt;

		&lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_RadWindowManager_prompttemplate&quot; style=&quot;display:none;&quot;&gt;

		 &lt;div class=&quot;rwDialogPopup radprompt&quot;&gt;			

			    &lt;div class=&quot;rwDialogText&quot;&gt;

			    {1}				

			    &lt;/div&gt;		

			    &lt;div&gt;

				    &lt;script type=&quot;text/javascript&quot;&gt;

				    function RadWindowprompt_detectenter(id, ev, input)

				    {							

					    if (!ev) ev = window.event;                

					    if (ev.keyCode == 13)

					    {															        

					        var but = input.parentNode.parentNode.getElementsByTagName(&quot;A&quot;)[0];					        

					        if (but)

						    {							

							    if (but.click) but.click();

							    else if (but.onclick)

							    {

							        but.focus(); var click = but.onclick; but.onclick = null; if (click) click.call(but);							 

							    }

						    }

					       return false;

					    } 

					    else return true;

				    }	 

				    &lt;/script&gt;

				    &lt;input  onkeydown=&quot;return RadWindowprompt_detectenter('{0}', event, this);&quot; type=&quot;text&quot;  class=&quot;rwDialogInput&quot; value=&quot;{2}&quot; /&gt;

			    &lt;/div&gt;

			    &lt;div&gt;

				    &lt;a onclick=&quot;$find('{0}').close(this.parentNode.parentNode.getElementsByTagName('input')[0].value);&quot;				

					    class=&quot;rwPopupButton&quot; href=&quot;javascript:void(0);&quot; &gt;&lt;span class=&quot;rwOuterSpan&quot;&gt;&lt;span class=&quot;rwInnerSpan&quot;&gt;##LOC[OK]##&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;

				    &lt;a onclick=&quot;$find('{0}').close(null);&quot; class=&quot;rwPopupButton&quot;  href=&quot;javascript:void(0);&quot;&gt;&lt;span class=&quot;rwOuterSpan&quot;&gt;&lt;span class=&quot;rwInnerSpan&quot;&gt;##LOC[Cancel]##&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;

			    &lt;/div&gt;

		    &lt;/div&gt;				       

		&lt;/div&gt;&lt;div id=&quot;ctl00_ContentPlaceHolder1_RadWindowManager_confirmtemplate&quot; style=&quot;display:none;&quot;&gt;

		&lt;div class=&quot;rwDialogPopup radconfirm&quot;&gt;			

			&lt;div class=&quot;rwDialogText&quot;&gt;

			{1}				

			&lt;/div&gt;						

			&lt;div&gt;

				&lt;a onclick=&quot;$find('{0}').close(true);&quot;  class=&quot;rwPopupButton&quot; href=&quot;javascript:void(0);&quot; &gt;&lt;span class=&quot;rwOuterSpan&quot;&gt;&lt;span class=&quot;rwInnerSpan&quot;&gt;##LOC[OK]##&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;

				&lt;a onclick=&quot;$find('{0}').close(false);&quot; class=&quot;rwPopupButton&quot;  href=&quot;javascript:void(0);&quot;&gt;&lt;span class=&quot;rwOuterSpan&quot;&gt;&lt;span class=&quot;rwInnerSpan&quot;&gt;##LOC[Cancel]##&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;

			&lt;/div&gt;

		&lt;/div&gt;		

		&lt;/div&gt;&lt;input id=&quot;ctl00_ContentPlaceHolder1_RadWindowManager_ClientState&quot; name=&quot;ctl00_ContentPlaceHolder1_RadWindowManager_ClientState&quot; type=&quot;hidden&quot; /&gt;

&lt;/div&gt;





                &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;

            &lt;/div&gt;

        &lt;/div&gt;

    &lt;/div&gt;

    &lt;/body&gt;&lt;/html&gt;</value></element><element name="languages"><value>English</value></element><element name="mauthentication"><value>No log-in required</value></element><element name="mauthororganisations"><value>Centers for Medicare &amp; Medicaid Services - Federal Government Agency [U.S.]&lt;br /&gt;</value></element><element name="mavailability"><value>General public</value></element><element name="mdbid"><value>http://www.qualitymeasures.ahrq.gov/content.aspx?id=27444</value></element><element name="mpublisher"><value>National Quality Measures Clearinghouse</value></element><element name="mrtype"><value>Measure</value></element><element name="msourcename"><value>Agency for Healthcare Research and Quality</value></element><element name="teaser"><value>&lt;p&gt;This measure* is a hospital-specific, risk-standardized, all-cause 30-day readmission (defined as readmission for any cause within 30 days from the date of discharge of the index admission) for patients discharged from the hospital with a principal discharge diagnosis of heart failure (HF).&lt;/p&gt;

&lt;p class=&quot;Note&quot;&gt;*This is a Centers for Medicare &amp;amp; Medicaid Services (CMS) only measure.&lt;/p&gt;</value></element><element name="title"><value>Heart failure (HF): hospital 30-day, all-cause, risk-standardized readmission rate (RSRR) following HF hospitalization.</value></element><element name="url"><value>http://www.qualitymeasures.ahrq.gov/content.aspx?id=27444</value></element></document></documents>

Open in new window

sorry below is the modified xslt
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
	<xsl:variable name="lc" select="'azertyuiopqsdfghjklmwxcvbn'"/>
	<xsl:variable name="uc" select="'AZERTYUIOPQSDFGHJKLMWXCVBN'"/>
	<xsl:template match="/">
		<Records>
			<xsl:for-each select="/documents/document">
				<record>
					<xsl:variable name="mylist">
						<xsl:call-template name="strip-tags">
							<xsl:with-param name="text" select="concat(substring-after(element[@name='MSHValues']/value,':'),';',substring-after(element[@name='MTHValues']/value,':'),';',substring-after(element[@name='SNOMEDCTValues']/value, ':'))"/>
						</xsl:call-template>
					</xsl:variable>
					
						<xsl:call-template name="process-values">
							<xsl:with-param name="list" select="';'"/>
							<xsl:with-param name="remaining" select="$mylist"/>
						</xsl:call-template>
					
				</record>
			</xsl:for-each>
		</Records>
	</xsl:template>
	<xsl:template name="process-values">
		<xsl:param name="list"/>
		<xsl:param name="remaining"/>
		<xsl:choose>
			<xsl:when test="contains($remaining, ';')">
				<xsl:variable name="new-list">
					<xsl:call-template name="filter-and-add">
						<xsl:with-param name="list" select="$list"/>
						<xsl:with-param name="term" select="substring-before($remaining, ';')"/>
					</xsl:call-template>
				</xsl:variable>
				<xsl:call-template name="process-values">
					<xsl:with-param name="list" select="$new-list"/>
					<xsl:with-param name="remaining" select="substring-after($remaining, ';')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:variable name="new-list">
					<xsl:call-template name="filter-and-add">
						<xsl:with-param name="list" select="$list"/>
						<xsl:with-param name="term" select="$remaining"/>
					</xsl:call-template>
				</xsl:variable>
				<xsl:value-of select="substring($new-list, 3)"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
	<xsl:template name="filter-and-add">
		<xsl:param name="list"/>
		<xsl:param name="term"/>
		<xsl:param name="norm-term" select="normalize-space(translate($term, '()1234567890', ''))"/>
		<xsl:choose>
			<xsl:when test="not(contains(concat($list, '; '), concat('; ', $norm-term, '; ')))">
				<xsl:value-of select="concat($list, '; ', $norm-term)"/>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$list"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
	<xsl:template name="strip-tags">
		<xsl:param name="text"/>
		<xsl:choose>
			<xsl:when test="contains($text, '&lt;')">
				<xsl:value-of select="substring-before($text, '&lt;')"/>
				<xsl:call-template name="strip-tags">
					<xsl:with-param name="text" select="substring-after($text, '&gt;')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$text"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
</xsl:stylesheet>

Open in new window

If you pass the string to this function, like this

            <xsl:call-template name="process-values">
                                          <xsl:with-param name="list" select="';'"/>
                                          <xsl:with-param name="remaining" select="/Records/record"/>
                                    </xsl:call-template>

It should work, no?
I m stripping out html tags, concatenating the values i need and then passing the xml to the process-values templates which for some reason is not returning me the desired output
thanks
ASKER CERTIFIED SOLUTION
Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
it is the lower-case that you need to get it working, in your sample Heart Failure and Heart failure are cased differently
sorry for late reply got busy in some priority work.

It looks good except one little problem i m getting a leading space in the output

<msubjectgen> heart failure; patient readmission; risk assessment; time factors</msubjectgen>

Tried normalise space but it did not work
if you simply do a normamlize-space on the result it will strip it out
(could be that you need to store the result in a variable first and do a normalize-space on the variable)
The variable thing worked. Many thanks