<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic PROC Report Using Image and compute statement in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171458#M12312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am current using SAS 9.4. I am trying to an insert arrow images in Proc Report but the compute statement is not working &lt;/P&gt;&lt;P&gt;I am getting CHANGE_IN_PCT is uninitialized in the Log and if statement is not working, here CHANGE_IN_PCT is a numeric data type variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=test NOWD;&lt;/P&gt;&lt;P&gt;COLUMNS TYPE&amp;nbsp; PREVIOUS_YEAR_PCT CURRENT_YEAR_PCT CHANGE_IN_PCT&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;DEFINE TYPE / "Type";&lt;/P&gt;&lt;P&gt;DEFINE PREVIOUS_YEAR_PCT / "Avg Previous Year %";&lt;/P&gt;&lt;P&gt;DEFINE CURRENT_YEAR_PCT / "Avg Current Year %";&lt;/P&gt;&lt;P&gt;DEFINE CHANGE_IN_PCT /&amp;nbsp; "Change in %" ;&lt;/P&gt;&lt;P&gt;compute CHANGE_IN_PCT&amp;nbsp; ;&lt;/P&gt;&lt;P&gt; if&amp;nbsp; CHANGE_IN_PCT &amp;gt; 0 then &lt;/P&gt;&lt;P&gt; call define (_col_,"style","Style= &lt;/P&gt;&lt;P&gt; [postimage= 'F:\EIAS\School Grades\Dashboard Data\GreenUp.gif']"); &lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2014 16:02:13 GMT</pubDate>
    <dc:creator>PROCSAS</dc:creator>
    <dc:date>2014-05-23T16:02:13Z</dc:date>
    <item>
      <title>PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171458#M12312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am current using SAS 9.4. I am trying to an insert arrow images in Proc Report but the compute statement is not working &lt;/P&gt;&lt;P&gt;I am getting CHANGE_IN_PCT is uninitialized in the Log and if statement is not working, here CHANGE_IN_PCT is a numeric data type variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=test NOWD;&lt;/P&gt;&lt;P&gt;COLUMNS TYPE&amp;nbsp; PREVIOUS_YEAR_PCT CURRENT_YEAR_PCT CHANGE_IN_PCT&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;DEFINE TYPE / "Type";&lt;/P&gt;&lt;P&gt;DEFINE PREVIOUS_YEAR_PCT / "Avg Previous Year %";&lt;/P&gt;&lt;P&gt;DEFINE CURRENT_YEAR_PCT / "Avg Current Year %";&lt;/P&gt;&lt;P&gt;DEFINE CHANGE_IN_PCT /&amp;nbsp; "Change in %" ;&lt;/P&gt;&lt;P&gt;compute CHANGE_IN_PCT&amp;nbsp; ;&lt;/P&gt;&lt;P&gt; if&amp;nbsp; CHANGE_IN_PCT &amp;gt; 0 then &lt;/P&gt;&lt;P&gt; call define (_col_,"style","Style= &lt;/P&gt;&lt;P&gt; [postimage= 'F:\EIAS\School Grades\Dashboard Data\GreenUp.gif']"); &lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 16:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171458#M12312</guid>
      <dc:creator>PROCSAS</dc:creator>
      <dc:date>2014-05-23T16:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171459#M12313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we refer compute variable name in if statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;compute CHANGE_IN_PCT ;&lt;/P&gt;&lt;P&gt; if&amp;nbsp; CHANGE_IN_PCT &amp;gt; 0 then &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 18:44:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171459#M12313</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-05-23T18:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171460#M12314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Is your variable character or numeric. I suspect that it must be numeric, because if it is, you would need to refer to it by the compound name that is expected in the COMPUTE block. The PROC REPORT doc is very clear on when you need to use a compound name and without a specific usage in your DEFINE statement, PROC REPORT will assign the default usage for the type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 00:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171460#M12314</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-05-24T00:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171461#M12315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Again, what is the usage of COMPUTE_IN_PCT in the DEFINE statement? Is the usage DISPLAY, ANALYSIS or COMPUTED -- does the variable exist in the input data set or are you creating it?&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 00:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171461#M12315</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-05-24T00:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171462#M12316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Cynthia - This is true define statement will determine usage of COMPUTE_IN_PCT. Error in log "CHANGE_IN_PCT is uninitialized in the Log and if statement is not working" indicates that this variable is not in the dataset. It looks like this is being created using compute statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 00:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171462#M12316</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-05-24T00:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171463#M12317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Not true. For example, SASHELP.CLASS has 5 variables: NAME, AGE, SEX, HEIGHT and WEIGHT. I can easily generate an "unitialized" message if I don't use HEIGHT the correct way in a COMPUTE block. Run the attached code and you will see the message that HEIGHT is unitialized.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html file='c:\temp\geterror.html';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; column name age sex height weight;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define name / order 'Name';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define height / 'Height';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; compute height;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if height gt 55 then&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define(_col_,'style','{postimage="c:\temp\kermit.gif"}');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 13:28:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171463#M12317</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-05-24T13:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171464#M12318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Height variable is coming from the dataset and is on the column statement. When we are using this in a compute block, actually we are trying to use this as a temporary variable but it has already been defined as an analysis variable, this generates the error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 17:31:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171464#M12318</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-05-24T17:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report Using Image and compute statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171465#M12319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; What is actually happening is that HEIGHT is being treated as an ANALYSIS variable with a default statistic of SUM. In the COMPUTE block, you are NOT trying to use HEIGHT as a 'temporary" variable, it is being referred to incorrectly in the COMPUTE block. In a COMPUTE block any reference to an existing numeric variable MUST use a COMPOUND name of &lt;EM&gt;&lt;STRONG&gt;variable.statistic&lt;/STRONG&gt;&lt;/EM&gt;, as explained here, in the doc:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0jann0dticnpbn1woe95yuphoaz.htm" title="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0jann0dticnpbn1woe95yuphoaz.htm"&gt;Base SAS(R) 9.3 Procedures Guide, Second Edition&lt;/A&gt; Look at the section entitled:&lt;/P&gt;&lt;P&gt;"Four Ways to Reference Report Items in a Compute Block". You can use temporary items in a COMPUTE block, but in the code below, HEIGHT is a report item coming from the dataset and HEIGHT.SUM is the compound name that must be used in the COMPUTE block to change the style.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; So, for example, if you try this alternate code, you will see that the error goes away. I changed the CALL DEFINE to use a simple style override, since not everybody has kermit.gif on their system. In the code below the use of the simple reference to HEIGHT will get a note in the log for #2 and #3, the correct reference to HEIGHT.SUM (not a temporary item) will not generate a message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html file='c:\temp\geterror.html';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title1 '1) Will Get Error';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; column name age sex height weight;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define name / order 'Name';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define height / 'Height';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; compute height;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if height gt 55 then&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define(_col_,'style','style={background=lightgreen}');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title1 '2) Will NOT Get Error';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; column name age sex height weight;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define name / order 'Name';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define height / 'Height';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; compute height;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if height.sum gt 55 then&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define(_col_,'style','style={background=lightgreen}');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title1 '3) Will NOT Get Error';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; column name age sex height weight;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define name / order 'Name';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; define height / 'Height';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; compute height;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if height.sum gt 55 then&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define(_col_,'style','style={postimage="c:\temp\arrow.gif"}');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11760i77B1B0ACFD64B5B1/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="height_uninit.png" title="height_uninit.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11761i32D86675E9ACBA0E/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Arrow.gif" title="Arrow.gif" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 17:55:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Using-Image-and-compute-statement/m-p/171465#M12319</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-05-24T17:55:45Z</dc:date>
    </item>
  </channel>
</rss>

