<?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 transpose on three columns in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804353#M316745</link>
    <description>Thank you Sajid01,&lt;BR /&gt;I forgt to dd the code, the question is updated.</description>
    <pubDate>Sun, 27 Mar 2022 12:02:02 GMT</pubDate>
    <dc:creator>SASdevAnneMarie</dc:creator>
    <dc:date>2022-03-27T12:02:02Z</dc:date>
    <item>
      <title>proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804255#M316699</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My data is&amp;nbsp; :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="680"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="80"&gt;Prod&lt;/TD&gt;
&lt;TD width="170"&gt;NOM_Mode de gestion&lt;/TD&gt;
&lt;TD width="130"&gt;Mode de gestion&amp;nbsp;&lt;/TD&gt;
&lt;TD width="130"&gt;Taux de retro mg&amp;nbsp;&lt;/TD&gt;
&lt;TD width="170"&gt;Nombre_de_Profil&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF1&lt;/TD&gt;
&lt;TD&gt;PROFIL SOFT&lt;/TD&gt;
&lt;TD&gt;0,0225&lt;/TD&gt;
&lt;TD&gt;0,0082&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF1&lt;/TD&gt;
&lt;TD&gt;PROFIL TONIC&lt;/TD&gt;
&lt;TD&gt;0,0224&lt;/TD&gt;
&lt;TD&gt;0,0079&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF3&lt;/TD&gt;
&lt;TD&gt;PROFIL DYN&lt;/TD&gt;
&lt;TD&gt;0,0225&lt;/TD&gt;
&lt;TD&gt;0,0082&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF3&lt;/TD&gt;
&lt;TD&gt;PROFIL TONIC&lt;/TD&gt;
&lt;TD&gt;0,0224&lt;/TD&gt;
&lt;TD&gt;0,0079&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to transpose this data and include the number in column name :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="1063"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="80"&gt;Prod&lt;/TD&gt;
&lt;TD width="170"&gt;NOM_Mode de gestion n1&lt;/TD&gt;
&lt;TD width="130"&gt;Mode de gestion n1&lt;/TD&gt;
&lt;TD width="130"&gt;Taux de retro mg n1&lt;/TD&gt;
&lt;TD width="170"&gt;NOM_Mode de gestion n2&lt;/TD&gt;
&lt;TD width="130"&gt;Mode de gestion n2&lt;/TD&gt;
&lt;TD width="130"&gt;Taux de retro mg n2&lt;/TD&gt;
&lt;TD width="123"&gt;Nombre_de_Profil&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF1&lt;/TD&gt;
&lt;TD&gt;PROFIL SOFT&lt;/TD&gt;
&lt;TD&gt;0,0225&lt;/TD&gt;
&lt;TD&gt;0,0082&lt;/TD&gt;
&lt;TD&gt;PROFIL TONIC&lt;/TD&gt;
&lt;TD&gt;0,0224&lt;/TD&gt;
&lt;TD&gt;0,0079&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;TF3&lt;/TD&gt;
&lt;TD&gt;PROFIL DYN&lt;/TD&gt;
&lt;TD&gt;0,0225&lt;/TD&gt;
&lt;TD&gt;0,0082&lt;/TD&gt;
&lt;TD&gt;PROFIL TONIC&lt;/TD&gt;
&lt;TD&gt;0,0224&lt;/TD&gt;
&lt;TD&gt;0,0079&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;I tested the proc transpose in different ways, but don't have the wanted result. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Do you know please, if I can have this type of wanted data via proc transpose or I need to create a macro programme ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My code is&amp;nbsp; :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

proc sort data=ACCORD7bis;
	by Prod "NOM_Mode de gestion"n;
run;


data ACCORD8;
	set ACCORD7bis;
	by Prod "NOM_Mode de gestion"n;
	retain N;

	if first.Prod then
		do;
			N = 1;
			output;
		end;
	else
		do;
			N = N + 1;
			output;
		end;
run;


data ACCORD9;
	set ACCORD8;
	/***New columns with values 
	NOM_Mode de gestion n1	
	Mode de gestion n1	
	Taux de retro mg n1	NOM_Mode de gestion n2.......***/
	"NOM_Mode de gestion_bis"n=("NOM_Mode de gestion n")||compress(N);
	"Mode de gestion_bis"n=("Mode de gestion n")||compress(N);
	"Taux de retro mg_bis"n=("Taux de retro mg n")||compress(N);
run;



proc transpose data=ACCORD9 out=ACCORD10(drop=_LABEL_ _NAME_);
  by Prod ;
  id "NOM_Mode de gestion_bis"n;
  var "NOM_Mode de gestion"n;
  
run;


proc transpose data=ACCORD9 out=ACCORD11(drop=_LABEL_ _NAME_);
  by Prod ;
  id "Mode de gestion_bis"n;
  var "Mode de gestion"n;  
run;


proc transpose data=ACCORD9 out=ACCORD12(drop=_LABEL_ _NAME_);
  by Prod ;
  id "Taux de retro mg_bis"n;
  var "Taux de retro mg"n;  
run;

proc sort data=ACCORD10;
	by Prod;
run;

proc sort data=ACCORD11;
	by Prod;
run;

proc sort data=ACCORD12;
	by Prod;
run;

data ACCORD13;
	merge ACCORD10 ACCORD11 ACCORD12;
	by Prod;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your guidance !&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 12:00:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804255#M316699</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T12:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804309#M316723</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/286185"&gt;@SASdevAnneMarie&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Can you please post your code and the log?&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 23:05:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804309#M316723</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-03-26T23:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804333#M316731</link>
      <description>&lt;P&gt;Transpose doesn't do well with transposing character and numeric variables in a single call.&lt;/P&gt;
&lt;P&gt;Are there only ever 2 records in each Prod variable group, or will it vary a lot depending on the actual Prod?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you know exactly how many groups there might be then perhaps an array based solution is feasible.&lt;/P&gt;
&lt;PRE&gt;data example;
   input group $ textvar $ numvar ;
   
datalines;
AA  bb  1.23
AA  cc  44
BB  abc 0.222
BB  pdq 99
;

data want;
   set example;
   by group;
   length textvar1-textvar2 $ 3;
   Retain index textvar1-textvar2  numvar1-numvar2;
   array t (*) textvar1-textvar2 ;
   array n (*) numvar1-numvar2 ;
   if first.group then call missing(index, of t(*), of n(*));
   index+1;
   t[index]= textvar;
   n[index]= numvar ;
   if last.group then output;
   drop index textvar numvar;
run;

&lt;/PRE&gt;
&lt;P&gt;You would need an array for each variable that you need to create the 1,2,3 versions.&lt;/P&gt;
&lt;P&gt;However, this only works if you know the maximum number of observations that might appear in all of the groups.&lt;/P&gt;
&lt;P&gt;Also, the order of the variables will be different. If the order of the variables is important than search the forum for the many examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does Nomber_de_profil ever vary between records in the same Prod group? If so, you need to provide examples and the rule(s) for determining which value is kept.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And just what is to be done with that somewhat ugly resulting data set?&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 07:01:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804333#M316731</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-03-27T07:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804344#M316740</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data example;
   input group $ textvar $ numvar ;
datalines;
AA  bb  1.23
AA  cc  44
BB  abc 0.222
BB  pdq 99
;

data temp;
 set example;
 by group;
 if first.group then n=0;
 n+1;
run;

proc sql noprint;
select distinct catt('temp(where=(n=',n,') rename=(
textvar=textvar_n',n,' numvar=numvar_n',n,'))')  into : merge separated by ' '
 from temp ;
quit;

data want;
 merge &amp;amp;merge. ;
 by group;
 drop n;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 10:48:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804344#M316740</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-03-27T10:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804345#M316741</link>
      <description>Or could check my paper about " Transpose data by Merge ".&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings15/2785-2015.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings15/2785-2015.pdf&lt;/A&gt;</description>
      <pubDate>Sun, 27 Mar 2022 10:53:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804345#M316741</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-03-27T10:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804353#M316745</link>
      <description>Thank you Sajid01,&lt;BR /&gt;I forgt to dd the code, the question is updated.</description>
      <pubDate>Sun, 27 Mar 2022 12:02:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804353#M316745</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T12:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804365#M316747</link>
      <description>&lt;P&gt;Thank you ballardw,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry,&amp;nbsp;I forgot to add the code, the question is updated.&lt;/P&gt;
&lt;P&gt;I wondering how to reduce the 3 proc transpose to one ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do this with my data for the odsout.object() print later : I would like to have one line per observation and replace&amp;nbsp; all the &lt;CODE class=" language-sas"&gt;&amp;amp;NOM_Mode_de_gest_n1. &lt;/CODE&gt;by loop on n%i&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%if &amp;amp;NOM_Mode_de_gest_n1. ne "" %then %do;
            obj.row_start();        
            obj.format_cell(text: "&amp;amp;NOM_Mode_de_gest_n1. (moyenne)",  overrides: "just=left color=black font_size=10pt font_weight=medium  cellheight=0.4cm leftmargin=1cm cellwidth=8.9cm fontfamily=arial");
			obj.format_cell(data: "&amp;amp;Mode_de_gestion_n1.", overrides: "color=black font_size=10pt font_weight=medium just=left  cellheight=0.4cm fontfamily=arial");
            obj.row_end();
			obj.row_start();  
			obj.format_cell(data: "&amp;amp;Taux_de_retro_mg_n1.", overrides: "color=black font_size=10pt font_weight=medium just=left font_style=italic cellheight=0.4cm fontfamily=arial");
            obj.row_end();
%end;
%if &amp;amp;NOM_Mode_de_gest_n2. ne "" %then %do;
           obj.row_start();        
            obj.format_cell(text: "&amp;amp;NOM_Mode_de_gest_n2. (moyenne)",  overrides: "just=left color=black font_size=10pt font_weight=medium  cellheight=0.4cm leftmargin=1cm cellwidth=8.9cm fontfamily=arial");
			obj.format_cell(data: "&amp;amp;Mode_de_gestion_n2.", overrides: "color=black font_size=10pt font_weight=medium just=left cellheight=0.4cm fontfamily=arial");
            obj.row_end();

			obj.row_start();  
 			obj.format_cell(data: "&amp;amp;Taux_de_retro_mg_n2.", overrides: "color=black font_size=10pt font_weight=medium just=left font_style=italic cellheight=0.4cm fontfamily=arial");
            obj.row_end();
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 27 Mar 2022 12:07:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804365#M316747</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T12:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804366#M316748</link>
      <description>Thank you Ksharp,&lt;BR /&gt;Sorry,&amp;nbsp;I forgot to add the code, the question is updated.&lt;BR /&gt;&lt;BR /&gt;Could you explain please your proc sql step ?</description>
      <pubDate>Sun, 27 Mar 2022 12:10:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804366#M316748</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T12:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804399#M316761</link>
      <description>&lt;P&gt;It is a lot easier to just use PROC SUMMARY instead.&amp;nbsp;&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings10/102-2010.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings10/102-2010.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First let's convert that listing back into an actual dataset so we have something program with.&amp;nbsp; Let's remove the spaces from the variable names so they are a lot easier to work with.&amp;nbsp; Note if you set the VALIDVARNAME option to V7 instead of ANY then tools like PROC IMPORT won' generate such goofy names to begin with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input Prod $ NOM_Mode_de_gestion $ Mode_de_gestion $ Taux_de_retro_mg  Nombre_de_Profil;
cards;
TF1 PROFIL SOFT 0.0225 0.0082 2
TF1 PROFIL TONIC 0.0224 0.0079 2
TF3 PROFIL DYN 0.0225 0.0082 2
TF3 PROFIL TONIC 0.0224 0.0079 2
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To use PROC SUMMARY to generate the wide dataset you need to know how many repetitions there are.&amp;nbsp; You can use PROC SQL to count for you.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
select max(count) into :ngroups
from (select prod,count(*) as count from have group by prod)
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then just use that NGROUPS macro variable where you tell PROC SUMMARY how many copies of the variables you want per by group.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=have ;
  by prod;
  output out=want idgroup(out[&amp;amp;ngroups] (NOM_Mode_de_gestion Mode_de_gestion Taux_de_retro_mg  Nombre_de_Profil)=);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 15:37:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804399#M316761</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-27T15:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804412#M316766</link>
      <description>Thank you very much  Tom,&lt;BR /&gt;&lt;BR /&gt;Could you explain me please what means  idgroup(out[&amp;amp;ngroups]  ?&lt;BR /&gt;</description>
      <pubDate>Sun, 27 Mar 2022 16:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804412#M316766</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T16:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804414#M316767</link>
      <description>&lt;P&gt;How many replicates of each variable to create.&amp;nbsp; Read the linked article and the documentation of PROC SUMMARY.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 17:16:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804414#M316767</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-27T17:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804418#M316770</link>
      <description>Thank you, Tom !</description>
      <pubDate>Sun, 27 Mar 2022 17:37:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804418#M316770</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-27T17:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804422#M316774</link>
      <description>&lt;P&gt;IDGROUP is one of the most beneficial (and likely underutilized) features of proc summary.&amp;nbsp; Not the least of its advantages is the intuitive renaming of the group of variables being transposed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It reduces this task, which I'll term "vargroup transpose" to very simple code, requiring the dataset to be read only twice and written only once -&amp;nbsp; more efficient than other techniques I have seen published.&amp;nbsp; And if you know the number of groups needed in advance, then you don't need to read the data into the preliminary PROC SQL, making this the absolute minimum usage of input/output resources.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 18:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804422#M316774</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-03-27T18:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose on three columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804469#M316798</link>
      <description>Thank you,  mkeintz!</description>
      <pubDate>Mon, 28 Mar 2022 08:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-transpose-on-three-columns/m-p/804469#M316798</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2022-03-28T08:40:46Z</dc:date>
    </item>
  </channel>
</rss>

