<?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 Re: Proc Report-column and Define stmnt in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95082#M20034</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;That was very informative and very detailed. I thank you for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; think I mistook the Diagrams in this notes from Documentation for a PDV when he is just showing how the row is filled!!!!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm" title="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The example is from this same link&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Thanks a ton&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Oct 2012 04:49:08 GMT</pubDate>
    <dc:creator>robertrao</dc:creator>
    <dc:date>2012-10-15T04:49:08Z</dc:date>
    <item>
      <title>Proc Report-column and Define stmnt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95080#M20032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is from the SAS Documentation on Building Proc Report.&lt;/P&gt;&lt;P&gt;I know If I have a variable A and I am writing B=A then the new variableB will hold exactly all the values of A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below in the proe report Column statement he is writing &lt;STRONG&gt;sales=salespct&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and he is using pctsum in the define statement without analysis option as shown below for salespct variable.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; define &lt;STRONG&gt;salespct&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; / &lt;STRONG&gt;pctsum&lt;/STRONG&gt; format=percent9.2;&lt;/P&gt;&lt;P&gt;Then He gets the variable named &lt;STRONG&gt;sales.pctsum&lt;/STRONG&gt; in the PDV&lt;/P&gt;&lt;P&gt;Could you please help me understand this concept...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Great Help&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=grocery noheader nowindows;&lt;BR /&gt;&amp;nbsp; column sector department sales &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sctrpct &lt;STRONG&gt;sales=Salespct&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define sector&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / 'Sector' group&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=$sctrfmt.;&lt;BR /&gt;&amp;nbsp; define department / group format=$deptfmt.;&lt;BR /&gt;&amp;nbsp; define sales&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / analysis sum&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=dollar9.2 ;&lt;BR /&gt;&amp;nbsp; define sctrpct&amp;nbsp;&amp;nbsp;&amp;nbsp; / computed&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=percent9.2 ;&lt;BR /&gt;&amp;nbsp; define salespct&amp;nbsp;&amp;nbsp; /&lt;STRONG&gt; pctsum&lt;/STRONG&gt; format=percent9.2;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2012 22:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95080#M20032</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-10-14T22:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report-column and Define stmnt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95081#M20033</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; In the PROC REPORT documentation, you should find the concept of defining an alias. When you declare a new report item to be created from an existing report item, you are creating a report item called an ALIAS. Usually this is done because you explicitly want to get a different statistic from PROC REPORT. For example in the program below:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.shoes nowd;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column region product sales sales=salesmn sales=salesmx sales=salesmed;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define region / group;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define product / group;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define sales / analysis sum 'Total Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define salesmn / analysis min 'Min Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define salesmx / analysis max 'Max Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define salesmed / analysis median 'Median Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The variable SALES is used 4 times, total on the report. For one usage, SALES is an analysis variable with the SUM statistic, for another, SALESMN is the 2nd usage of SALES, only this time, with the MIN statistic; then, the 3rd time, SALESMX is the alias for SALES with the MAX statistic; and the 4th time, SALESMED is the alias of SALES used with the MEDIAN statistic. In the above code, the usage of "ANALYSIS" is not required on each DEFINE statement. With numeric variables, a statistic on the DEFINE statement automatically implies the USAGE of ANALYSIS. So you can, but do not need to have the ANALYSIS on each DEFINE. These are equivalent statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define sales / analysis sum 'Total Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define sales / sum 'Total Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define salesmn / analysis min 'Min Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define salesmn / min 'Min Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; So, to your first question, ANALYSIS is implied with the statistic PCTSUM, so it is not REQUIRED on the DEFINE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next, PROC REPORT does NOT have a Program Data Vector (PDV) -- only the DATA step has a PDV. Since you did not show a complete PROC REPORT program with a COMPUTE block (or you only copied part of the example program), I'm not sure what your question is about the COMPOUND name. The fact is that there is only 1 variable in my program above that would have or need a compound name. If I was going to refer to the SALES variable, the correct compound name would be SALES.SUM. The other items that come from using an alias, SALESMN, SALESMX, and SALESMED do NOT need a compound name -- in fact, PROC REPORT won't let you use a COMPOUND name for these aliases (see below). In a COMPUTE block, these items can be referenced by the simple alias name (without the statistic). This documentation page explicitly shows that in Example 3, described here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0ldy84v9j7463n1jjkloe7av38c.htm" title="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0ldy84v9j7463n1jjkloe7av38c.htm"&gt;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0ldy84v9j7463n1jjkloe7av38c.htm&lt;/A&gt; , you can note how SALESMIN and SALESMAX are used in a COMPUTE block without a compound name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The program that you ask about is from the documentation section entitled (How PROC REPORT Builds a Report, subtopic: Building a Report That Uses Temporary Variables):&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n1gb1fq6jc5syxn162qoa8k6kc20.htm" title="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n1gb1fq6jc5syxn162qoa8k6kc20.htm"&gt;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n1gb1fq6jc5syxn162qoa8k6kc20.htm&lt;/A&gt; and in the example the "concept" of SALES.PCTSUM is introduced to show how statistics are calculated and held in a memory location (note that the term "PDV" is NOT ever used in the documentation topic). Conceptually, the documentation topic discusses SALES.SUM and SALES.PCTSUM as being available on the COMPUTE before -- but what they mean is that in a pre-processing phase, all the statistics based on SALES are calculated. However, you never see SALES.PCTSUM used in the program and if you DID use SALES.PCTSUM in the program, you would get an error message in the log. Consider the log message that my program gets if I try to use a reference like SALES.PCTSUM for an alias in my program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;88&amp;nbsp;&amp;nbsp; ods html file='c:\temp\test_compound.html' style=sasweb;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: Writing HTML Body file: c:\temp\test_compound.html&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;89&amp;nbsp;&amp;nbsp; proc report data=sashelp.shoes nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where region in ('United States', 'Canada');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;91&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; column region product sales sales=salespct newvar1 newvar2;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;92&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define region / group;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;93&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define product / group;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;94&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define sales / sum 'Total Sales';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;95&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define salespct / pctsum 'Pctsum Sales' f=10.6;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;96&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define newvar1 / computed f=10.6;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;97&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define newvar2 / computed f=10.6;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;98&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compute newvar1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newvar1 = salespct * 100;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;100&amp;nbsp;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp; compute newvar2;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;102&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newvar2=sales.pctsum * 100;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;103&amp;nbsp;&amp;nbsp;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;104&amp;nbsp; run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ERROR: The variable type of SALES.PCTSUM is invalid in this context.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: The preceding messages refer to the COMPUTE block for newvar2.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: Will not run due to compilation errors.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: There were 77 observations read from the data set SASHELP.SHOES.&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; WHERE region in ('Canada', 'United States');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;NOTE: PROCEDURE REPORT used (Total process time):&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; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.08 seconds&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; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;105&amp;nbsp; ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; As you can see...SALES.PCTSUM is an invalid reference in the COMPUTE block. You MUST use the ALIAS name as the reference in the COMPUTE block. The reference to SALES.PCTSUM in the documentation topic you cited is only a conceptual reference. In order for the above program to work, the assignment statement for NEWVAR2 would have to be the same as the assignment statement for NEWVAR1 in order to eliminate the error message. In the documentation topic, &lt;STRONG&gt;Four Ways to Reference Report Items in a Compute Block&lt;/STRONG&gt;,&amp;nbsp; (&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;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0jann0dticnpbn1woe95yuphoaz.htm&lt;/A&gt;), you will find a table that shows exactly how and when you use a compound name versus a "regular" or simple name. Under the ANALYSIS usage, it says that you use a COMPOUND name &lt;STRONG style="text-decoration: underline;"&gt;except&lt;/STRONG&gt; (note the * comment) that &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;"If the variable has an alias, then you must reference it with the alias."&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I hope this explains the documentation example in a bit more detail.&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;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 04:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95081#M20033</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-10-15T04:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report-column and Define stmnt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95082#M20034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;That was very informative and very detailed. I thank you for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; think I mistook the Diagrams in this notes from Documentation for a PDV when he is just showing how the row is filled!!!!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm" title="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473631.htm&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The example is from this same link&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Thanks a ton&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 04:49:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-column-and-Define-stmnt/m-p/95082#M20034</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-10-15T04:49:08Z</dc:date>
    </item>
  </channel>
</rss>

