<?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 How to display the bars in alphabetical order? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966379#M25504</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to display the countries alphabetically on the x-axis?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also read the below link:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2023/11/13/avoid-alphabetical-order.html" target="_blank"&gt;Tip: Avoid alphabetical order for a categorical axis in a graph - The DO Loop&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if I use&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;CATEGORYORDER=data in my code, I will get the error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The below code works for me, just wanted to sort the bar&amp;nbsp;in alphabetical order using "proc sgplot" not "proc chart".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=tmp;
tables country / out=freq;
run;
proc sgplot data=freq;
   vbar country / response=Count  datalabelattrs=(size=6)  ;
   xaxis label=" " fitpolicy=rotate labelattrs=(size=6) valueattrs=(size=6);
   yaxis label="Number of Respondents" labelattrs=(size=6) valueattrs=(size=6); 
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 01:50:46 GMT</pubDate>
    <dc:creator>bhr-q</dc:creator>
    <dc:date>2025-05-13T01:50:46Z</dc:date>
    <item>
      <title>How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966379#M25504</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to display the countries alphabetically on the x-axis?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also read the below link:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2023/11/13/avoid-alphabetical-order.html" target="_blank"&gt;Tip: Avoid alphabetical order for a categorical axis in a graph - The DO Loop&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if I use&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;CATEGORYORDER=data in my code, I will get the error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The below code works for me, just wanted to sort the bar&amp;nbsp;in alphabetical order using "proc sgplot" not "proc chart".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=tmp;
tables country / out=freq;
run;
proc sgplot data=freq;
   vbar country / response=Count  datalabelattrs=(size=6)  ;
   xaxis label=" " fitpolicy=rotate labelattrs=(size=6) valueattrs=(size=6);
   yaxis label="Number of Respondents" labelattrs=(size=6) valueattrs=(size=6); 
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 01:50:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966379#M25504</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T01:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966383#M25505</link>
      <description>&lt;P&gt;Actually, alphabetical order is the default setting.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.cars;
tables make / out=freq;
run;
proc sgplot data=freq;
   vbar make / response=Count  datalabelattrs=(size=6)  ;
   xaxis label=" " fitpolicy=rotate labelattrs=(size=6) valueattrs=(size=6);
   yaxis label="Number of Respondents" labelattrs=(size=6) valueattrs=(size=6); 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106901i34968873179B28F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Wherase, Rick Wicklin's blog told to use frequency order and horizontal bar.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.cars;
tables make / out=freq;
run;
proc sgplot data=freq;
   hbar make / response=Count datalabelattrs=(size=6) categoryorder=respdesc ;
   xaxis label=" " fitpolicy=rotate labelattrs=(size=6) valueattrs=(size=6);
   yaxis label="Number of Respondents" labelattrs=(size=6) valueattrs=(size=6); 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106902i5F83B3D7A42FC463/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 04:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966383#M25505</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2025-05-13T04:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966397#M25506</link>
      <description>&lt;P&gt;Thanks for your answer, as you see below, my issue is I can not get the bar in alphabetical order.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 10:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966397#M25506</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T10:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966402#M25507</link>
      <description>&lt;P&gt;Show us the code you used. Is your data that you send to PROC SGPLOT sorted alphabetically? Please paste the graph with incorrect results into your message. Do not include it as a file attachment.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 11:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966402#M25507</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-05-13T11:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966416#M25508</link>
      <description>&lt;P&gt;Thank you for your answer.&amp;nbsp; My code has been mentioned in my initial comment.&lt;/P&gt;
&lt;P class="" data-start="101" data-end="237"&gt;The x-axis is too cluttered because there are many countries, which is why I attached the PDF in my previous comment for better clarity.&lt;/P&gt;
&lt;P class="" data-start="242" data-end="329"&gt;Also, even after sorting the data by country, they do not appear in alphabetical order.&lt;/P&gt;
&lt;P class="" data-start="242" data-end="329"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=tmp;
tables country / out=freq;run;&lt;BR /&gt;
proc sort data=freq; by country; run;&lt;BR /&gt;
proc sgplot data=freq;
   vbar country / response=Count  datalabelattrs=(size=6)  ;
   xaxis label=" " fitpolicy=rotate labelattrs=(size=6) valueattrs=(size=6);
   yaxis label="Number of Respondents" labelattrs=(size=6) valueattrs=(size=6); 
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="bhrq_0-1747145629777.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106905iBADD64CCEC77C680/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bhrq_0-1747145629777.png" alt="bhrq_0-1747145629777.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 14:13:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966416#M25508</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T14:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966419#M25509</link>
      <description>&lt;P&gt;What type of variable is COUNTRY?&amp;nbsp; Is it NUMERIC of CHRACTER?&amp;nbsp; Does it have&amp;nbsp; FORMAT attached to it?&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 14:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966419#M25509</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-05-13T14:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966421#M25510</link>
      <description>&lt;P&gt;Thanks for your answer, country is the character variable, and yes there is a format in my coding like '1'='Afghanistan' &lt;BR /&gt;'2'='Albania' &lt;BR /&gt;etc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 14:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966421#M25510</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T14:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966422#M25511</link>
      <description>&lt;P&gt;The problem comes in that if Afghanistan is '1' and you sort these then whatever country '10' is should be next. Why? Because when you sort alphabetically, after '1' the next sorted value will be '10'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to sort by country name alphabetically you probably need to create a variable that contains the country name and sort that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;length country_name $ 40;
country_name=put(country,$formatname.);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or by changing the sort (and assuming your numbers in the format are always in alphabetical order of the country_names)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=freq sortseq=linguistic(numeric_collation=ON);
by country;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 May 2025 14:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966422#M25511</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-05-13T14:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966425#M25512</link>
      <description>&lt;P&gt;I tried this way, with your first way, the plot is like below: it ignores the name of the country&lt;/P&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="bhrq_0-1747148596756.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106906i045BB06F219EF131/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bhrq_0-1747148596756.png" alt="bhrq_0-1747148596756.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with your second way, would be like below: didn't sort&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bhrq_1-1747148673034.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106907i3F7157E3B1FC96B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bhrq_1-1747148673034.png" alt="bhrq_1-1747148673034.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 15:05:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966425#M25512</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T15:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966426#M25513</link>
      <description>&lt;P&gt;Show us the PROC FORMAT you are using.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 15:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966426#M25513</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-05-13T15:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966428#M25514</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format ;
value $country_ '1'='Afghanistan' '2'='Albania' 
		'3'='Algeria' '4'='Andorra' 
		'5'='Angola' '6'='Antigua and Barbuda' 
		'7'='Argentina' '8'='Armenia' 
		'9'='Australia' '10'='Austria' 
		'11'='Azerbaijan' '12'='Bahamas' 
		'13'='Bahrain' '14'='Bangladesh' 
		'15'='Barbados' '16'='Belarus' 
		'17'='Belgium' '18'='Belize' 
		'19'='Benin' '20'='Bhutan' 
		'21'='Bolivia' '22'='Bosnia and Herzegovina' 
		'23'='Botswana' '24'='Brazil' 
		'25'='Brunei' '26'='Bulgaria' 
		'27'='Burkina Faso' '28'='Burundi' 
		'29'='Cabo Verde' '30'='Cambodia' 
		'31'='Cameroon' '32'='Canada' 
		'33'='Central African Republic' '34'='Chad' 
		'35'='Chile' '36'='China' 
		'37'='Colombia' '38'='Comoros' 
		'39'='Costa Rica' 
		'40'='Côte Ivoire' '41'='Croatia' 
		'42'='Cuba' '43'='Cyprus' 
		'44'='Czech Republic' '45'='Denmark' 
		'46'='Djibouti' '47'='Dominica' 
		'48'='Dominican Republic' '49'='East Timor (Timor-Leste)' 
		'50'='Ecuador' '51'='Egypt' 
		'52'='El Salvador' '53'='Equatorial Guinea' 
		'54'='Eritrea' '55'='Estonia' 
		'56'='Eswatini' '57'='Ethiopia' 
		'58'='Fiji' '59'='Finland' 
		'60'='France' '61'='Gabon' 
		'62'='The Gambia' '63'='Georgia' 
		'64'='Germany' '65'='Ghana' 
		'66'='Greece' '67'='Grenada' 
		'68'='Guatemala' '69'='Guinea' 
		'70'='Guinea-Bissau' '71'='Guyana' 
		'72'='Haiti' '73'='Honduras' 
		'74'='Hungary' '75'='Iceland' 
		'76'='India' '77'='Indonesia' 
		'78'='Iran' '79'='Iraq' 
		'80'='Ireland' '81'='Israel' 
		'82'='Italy' '83'='Jamaica' 
		'84'='Japan' '85'='Jordan' 
		'86'='Kazakhstan' '87'='Kenya' 
		'88'='Kiribati' 'Korea'='South' 
		'89'='Kosovo' '90'='Kuwait' 
		'91'='Kyrgyzstan' '92'='Laos' 
		'93'='Latvia' '94'='Lebanon' 
		'95'='Lesotho' '96'='Liberia' 
		'97'='Libya' '98'='Liechtenstein' 
		'99'='Lithuania' '100'='Luxembourg' 
		'101'='Madagascar' '102'='Malawi' 
		'103'='Malaysia' '104'='Maldives' 
		'105'='Mali' '106'='Malta' 
		'107'='Marshall Islands' '108'='Mauritania' 
		'109'='Mauritius' '110'='Mexico' 
		'211'='Micronesia' '111'='Moldova' 
		'112'='Monaco' '113'='Mongolia' 
		'114'='Montenegro' '115'='Morocco' 
		'116'='Mozambique' '117'='Myanmar' 
		'118'='Namibia' '119'='Nauru' 
		'120'='Nepal' '121'='Netherlands' 
		'122'='New Zealand' '123'='Nicaragua' 
		'124'='Niger' '125'='Nigeria' 
		'126'='North Macedonia' '127'='Norway' 
		'128'='Oman' '129'='Pakistan' 
		'130'='Palau' '131'='Panama' 
		'132'='Papua New Guinea' '133'='Paraguay' 
		'134'='Peru' '135'='Philippines' 
		'136'='Poland' '137'='Portugal' 
		'138'='Qatar' '139'='Romania' 
		'140'='Russia' '141'='Rwanda' 
		'142'='Saint Kitts and Nevis' '143'='Saint Lucia' 
		'144'='Saint Vincent and the Grenadines' '145'='Samoa' 
		'146'='San Marino' '147'='Sao Tome and Principe' 
		'148'='Saudi Arabia' '149'='Senegal' 
		'150'='Serbia' '151'='Seychelles' 
		'152'='Sierra Leone' '153'='Singapore' 
		'154'='Slovakia' '155'='Slovenia' 
		'156'='Solomon Islands' '157'='Somalia' 
		'158'='South Africa' '159'='Spain' 
		'160'='Sri Lanka' '161'='Sudan' 
		'Sudan'='South' '162'='Suriname' 
		'163'='Sweden' '164'='Switzerland' 
		'165'='Syria' '166'='Taiwan' 
		'167'='Tajikistan' '168'='Tanzania' 
		'169'='Thailand' '170'='Togo' 
		'171'='Tonga' '172'='Trinidad and Tobago' 
		'173'='Tunisia' '174'='Turkey' 
		'175'='Turkmenistan' '176'='Tuvalu' 
		'177'='Uganda' '178'='Ukraine' 
		'179'='United Arab Emirates' '180'='United Kingdom' 
		'181'='United States' '182'='Uruguay' 
		'183'='Uzbekistan' '184'='Vanuatu' 
		'185'='Vatican City' '186'='Venezuela' 
		'187'='Vietnam' '188'='Yemen' 
		'189'='Zambia' '190'='Zimbabwe'&lt;BR /&gt;&lt;BR /&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 May 2025 15:40:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966428#M25514</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T15:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966429#M25515</link>
      <description>&lt;P&gt;I don't see where you create a new variable country_name and then sorted by country_name&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Works for me&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data fake;
    input country $ count;
    cards;
1 28
173 55
109 4
127 33
2 48
20 99
188 4
;
data fake1;
    set fake;
    country_name=put(country,$country_.);
run;
proc sort data=fake1;
    by country_name;
run;

proc sgplot data=fake1;
    vbar country_name/response=count;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: You need to show us the code you used whenever something doesn't work. Showing us the output plots are not sufficient. We need to see the code, for this problem and for all future problems, when something doesn't work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 15:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966429#M25515</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-05-13T15:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966432#M25516</link>
      <description>Thank you for your help, it works, I used $country_fmt  instead of  $country_   by mistake.</description>
      <pubDate>Tue, 13 May 2025 15:59:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966432#M25516</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T15:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966433#M25517</link>
      <description>&lt;P&gt;Please remember to show us the code from now on.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 16:28:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966433#M25517</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-05-13T16:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the bars in alphabetical order?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966434#M25518</link>
      <description>my code has been shown in my initial comment, in your previous comment  you asked me to show the proc format that I did.</description>
      <pubDate>Tue, 13 May 2025 16:31:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-the-bars-in-alphabetical-order/m-p/966434#M25518</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2025-05-13T16:31:06Z</dc:date>
    </item>
  </channel>
</rss>

