<?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: creating multi labels using proc format cntlin in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595415#M15803</link>
    <description>&lt;P&gt;Concrete examples of what you are attempting, start data and expected result, are always a good idea.&lt;/P&gt;
&lt;P&gt;You say: "The issue is that the value which is assigned to the Label variable is what gets mapped on the basis of a defined key. And i have three values to map.&amp;nbsp;"&lt;/P&gt;
&lt;P&gt;I do not see anything from that text why you might need 3 formats. An explicit example of the mapping might clarify things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ii) If there is a way that i can have multiple labels and using some criteria i can tell SAS that if the key matches then assign this label value to some other variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can always assign a formatted value with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;othervar = put(somevar, fmtname.);&lt;/P&gt;
&lt;P&gt;So if this needs to be conditional on a value then:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If &amp;lt;condition&amp;gt; then othervar = put(somevar, fmtname.);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have tried something like this and the results were not what you expect then show: What you attempted, what the starting data was and the expected result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The multilabel formats may work but the multiple nature is only completely honored by a few procedures. The Put function in a data step is not one of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Oct 2019 14:24:55 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-10-10T14:24:55Z</dc:date>
    <item>
      <title>creating multi labels using proc format cntlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595399#M15800</link>
      <description>&lt;P&gt;i want to achieve something that i have not tried before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dataset which i am using to make a format using proc format cntlin and data statement.&lt;/P&gt;&lt;P&gt;The issue is that the value which is assigned to the Label variable is what gets mapped on the basis of a defined key. And i have three values to map. I have 2 choices to do the same:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i) Either i make 3 different formats using the above mentioned methods because i have 3 values to map using the same key.&lt;/P&gt;&lt;P&gt;ii) If there is a way that i can have multiple labels and using some criteria i can tell SAS that if the key matches then assign this label value to some other variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is method ii) possible?&lt;/P&gt;&lt;P&gt;If yes, can please anyone explain that to me. Examples will be very much appriciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 13:53:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595399#M15800</guid>
      <dc:creator>hiteshchauhan1</dc:creator>
      <dc:date>2019-10-10T13:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: creating multi labels using proc format cntlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595405#M15801</link>
      <description>&lt;P&gt;Create a simple example of your multi-level format using PROC FORMAT code.&amp;nbsp; Then use the CNTLOUT= option on PROC FORMAT to convert it to a dataset.&amp;nbsp; Look at that generated dataset and figure out how the multi-level values are stored/flagged.&amp;nbsp; Then figure out how to recreate that from your source data. Key variables are FMTNAME, START, END, HLO.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 13:59:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595405#M15801</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-10T13:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: creating multi labels using proc format cntlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595408#M15802</link>
      <description>&lt;P&gt;You can use multilabel formats.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This creates a format and then uses CNTLOUT to display it so you can see how you need to structure your input data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*This program shows how an multilabel format works and that the summary statistics can be done at a unique level but also aggregated at a higher level included in the data.*/

/*sample data*/
data have;
input Year    Area $    Profit;
cards;
2001    A   1
2002    A   2
2001    B   1
2001    C   3
2002    C   1
2001    E   4
2002    E   2
2001    F   3
2002    F   4
;;;;
run;

*format - groups A/B/C into D and E/F into G as well;
proc format;
value $ area_fmt (multilabel)
'A' = 'A'
'B' = 'B'
'C' = 'C'
'A', 'B', 'C' = 'D'
'E' = 'E'
'F' = 'F'
'E', 'F' = 'G';
run;

*summary statistics - not CLASS and FORMAT statements;
proc means data=have noprint nway;
class year area / mlf;
format area $area_fmt.;
var profit;
output out=want sum(profit)=profit;
run;



proc format cntlout=demo;
run;

title 'Demo of control data set for a format';
proc print data=demo;
var fmtname start start end label hlo mult sexcl eexcl;
run; 
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="IDX" class="systitleandfootercontainer"&gt;
&lt;P&gt;&lt;SPAN class="c systemtitle"&gt;Demo of control data set for a format&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;ARTICLE aria-label="Data Set WORK.DEMO"&gt;
&lt;TABLE class="table" aria-label="Data Set WORK.DEMO"&gt;&lt;CAPTION aria-label="Data Set WORK.DEMO"&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;FMTNAME&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;START&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;START&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;END&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;LABEL&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;HLO&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;MULT&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;SEXCL&lt;/TH&gt;
&lt;TH class="header" scope="col"&gt;EEXCL&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="data"&gt;D&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;4&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;B&lt;/TD&gt;
&lt;TD class="data"&gt;D&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;5&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;6&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;C&lt;/TD&gt;
&lt;TD class="data"&gt;D&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;7&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;8&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;E&lt;/TD&gt;
&lt;TD class="data"&gt;G&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;9&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;10&lt;/TH&gt;
&lt;TD class="data"&gt;AREA_FMT&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;TD class="data"&gt;G&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;TD class="data"&gt;N&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271996"&gt;@hiteshchauhan1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;i want to achieve something that i have not tried before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a dataset which i am using to make a format using proc format cntlin and data statement.&lt;/P&gt;
&lt;P&gt;The issue is that the value which is assigned to the Label variable is what gets mapped on the basis of a defined key. And i have three values to map. I have 2 choices to do the same:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i) Either i make 3 different formats using the above mentioned methods because i have 3 values to map using the same key.&lt;/P&gt;
&lt;P&gt;ii) If there is a way that i can have multiple labels and using some criteria i can tell SAS that if the key matches then assign this label value to some other variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is method ii) possible?&lt;/P&gt;
&lt;P&gt;If yes, can please anyone explain that to me. Examples will be very much appriciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 14:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595408#M15802</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-10T14:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: creating multi labels using proc format cntlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595415#M15803</link>
      <description>&lt;P&gt;Concrete examples of what you are attempting, start data and expected result, are always a good idea.&lt;/P&gt;
&lt;P&gt;You say: "The issue is that the value which is assigned to the Label variable is what gets mapped on the basis of a defined key. And i have three values to map.&amp;nbsp;"&lt;/P&gt;
&lt;P&gt;I do not see anything from that text why you might need 3 formats. An explicit example of the mapping might clarify things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ii) If there is a way that i can have multiple labels and using some criteria i can tell SAS that if the key matches then assign this label value to some other variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can always assign a formatted value with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;othervar = put(somevar, fmtname.);&lt;/P&gt;
&lt;P&gt;So if this needs to be conditional on a value then:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If &amp;lt;condition&amp;gt; then othervar = put(somevar, fmtname.);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have tried something like this and the results were not what you expect then show: What you attempted, what the starting data was and the expected result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The multilabel formats may work but the multiple nature is only completely honored by a few procedures. The Put function in a data step is not one of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 14:24:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595415#M15803</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-10-10T14:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: creating multi labels using proc format cntlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595515#M15820</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271996"&gt;@hiteshchauhan1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;i want to achieve something that i have not tried before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a dataset which i am using to make a format using proc format cntlin and data statement.&lt;/P&gt;
&lt;P&gt;The issue is that the value which is assigned to the Label variable is what gets mapped on the basis of a defined key. And i have three values to map. I have 2 choices to do the same:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i) Either i make 3 different formats using the above mentioned methods because i have 3 values to map using the same key.&lt;/P&gt;
&lt;P&gt;ii) If there is a way that i can have multiple labels and using some criteria i can tell SAS that if the key matches then assign this label value to some other variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is method ii) possible?&lt;/P&gt;
&lt;P&gt;If yes, can please anyone explain that to me. Examples will be very much appriciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use multi-label formats expand your data as in this example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*sample data*/
data have;
   input Year Area :$1. Profit;
   cards;
   2001    A   1
   2002    A   2
   2001    B   1
   2001    C   3
   2002    C   1
   2001    E   4
   2002    E   2
   2001    F   3
   2002    F   4
   ;;;;
   run;
proc format;
value $area(notsorted multilabel)
   'A','B','C' = 'A,B,C'
   'A'='A'    'B'='B'   'C'='C'   'E'='E'   'F'='F'
   'E','F'='E,F'
   'A'-'Z'= 'All'
   ;
quit;

/* expand the data */
data haveV / view=haveV;
   _obs_ + 1;
   retain area;
   retain _s1_ ' ';
   set have;
   retain _s2_ ' ';
   run;
proc print;
   run;
proc summary data=haveV nway;
   by _obs_;
   class area / mlf order=data preloadfmt;
   format area $area.;
   output out=expanded(drop=_type_ drop=_s:) idgroup(out(_s1_--_s2_)=);
   run;
proc print;
   run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Have with by variable and makers" style="width: 293px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33048iB4BE29800BEA5E2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Have with by variable and makers" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Have with by variable and makers&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Expanded" style="width: 220px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33049iE8267BEFFD388C76/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Expanded" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Expanded&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 17:33:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/creating-multi-labels-using-proc-format-cntlin/m-p/595515#M15820</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-10-10T17:33:45Z</dc:date>
    </item>
  </channel>
</rss>

