<?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: How to program this report for the desired output (how to suppress multiple rows as single row) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680191#M205506</link>
    <description>&lt;P&gt;Thanks Shmuel&lt;/P&gt;</description>
    <pubDate>Sat, 29 Aug 2020 11:14:39 GMT</pubDate>
    <dc:creator>buddha_d</dc:creator>
    <dc:date>2020-08-29T11:14:39Z</dc:date>
    <item>
      <title>How to program this report for the desired output (how to suppress multiple rows as single row)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680182#M205500</link>
      <description>&lt;P&gt;Guys, I have building a report as shown below. Can anyone help me to obtain that?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cars (DROP=MODEL);
	set sashelp.cars;
run;

PROC SQL;
	CREATE TABLE HAVE AS 
	SELECT make,origin,type,drivetrain,Cylinders,enginesize,MSRP,invoice,horsepower,
			WEIGHT,WHEELBASE,LENGTH
	FROM CARS
	WHERE MAKE='Audi'
	GROUP BY MAKE,ORIGIN,TYPE,DRIVETRAIN,CYLINDERS
	order by MAKE,ORIGIN,TYPE,DRIVETRAIN,CYLINDERS
	;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I want my output to look like this either in SAS or excel (prior to proc export step).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="buddha_d_0-1598677544063.png" style="width: 874px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48780i241559CFE5B74CB0/image-dimensions/874x424?v=v2" width="874" height="424" role="button" title="buddha_d_0-1598677544063.png" alt="buddha_d_0-1598677544063.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Sat, 29 Aug 2020 05:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680182#M205500</guid>
      <dc:creator>buddha_d</dc:creator>
      <dc:date>2020-08-29T05:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to program this report for the desired output (how to suppress multiple rows as single row)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680183#M205501</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=have nofs headline;
   column make origin type drivetrain Cylinders enginesize
          MSRP invoice horsepower WEIGHT WHEELBASE LENGTH;
   define make / order;
   define origin  / order;
   define type  / order;
   define drivetrain  / order;
   define Cylinders  / order;
   define enginesize / display;
   define MSRP / display;
   define invoice / display;
   define horsepower / display;
   define WEIGHT / display;
   define WHEELBASE / display;
   define LENGTH / display;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 29 Aug 2020 05:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680183#M205501</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-08-29T05:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to program this report for the desired output (how to suppress multiple rows as single row)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680191#M205506</link>
      <description>&lt;P&gt;Thanks Shmuel&lt;/P&gt;</description>
      <pubDate>Sat, 29 Aug 2020 11:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-program-this-report-for-the-desired-output-how-to/m-p/680191#M205506</guid>
      <dc:creator>buddha_d</dc:creator>
      <dc:date>2020-08-29T11:14:39Z</dc:date>
    </item>
  </channel>
</rss>

