<?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: Formatting sgplot xaxis values?! in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586274#M167350</link>
    <description>&lt;P&gt;Use e. format and option minor, and specify the values for major ticks only :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
call streaminit(67678568);
do i = 1 to 200;
    dollar = 1e5 * rand("Beta", 4, 4);
    output;
    end;
run;

proc sgplot data=test;
histogram dollar;
xaxis values=(0 to 105E3 by 1E4) minor minorcount=1 valuesformat=e8. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot11.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32216i9E3D5EE692063786/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot11.png" alt="SGPlot11.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Sep 2019 22:00:36 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-09-04T22:00:36Z</dc:date>
    <item>
      <title>Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586178#M167305</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to format the values of the xaxis from numeric to scientific notation, because I thought that might be an explanation why the tick intervals of 5000 don't work. It would be sufficient to have just minor ticks without notation.&lt;BR /&gt;Every format I could find here ( &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n0kdscfhkob956n196h4jixhibn5.htm&amp;amp;locale=de#n0le3fkbqipcldn101al4qv8x54" target="_blank"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n0kdscfhkob956n196h4jixhibn5.htm&amp;amp;locale=de#n0le3fkbqipcldn101al4qv8x54&lt;/A&gt;) is&amp;nbsp;without explanation and not working also.&lt;/P&gt;&lt;P&gt;Gross E8 worked previously with proc boxplot, but not with sgplot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where can I find explanation for the available formats and how can I change my xaxis values properly?&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="Bild 04.09.19 um 10.54.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32206i0317887B6758C025/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 04.09.19 um 10.54.jpg" alt="Bild 04.09.19 um 10.54.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         proc sgplot data=income;
 74         histogram dollar;
 75         yaxis values=(0 to 62 by 5) grid;
 76         xaxis values=(0 to 105E3 by 5E3) valuesformat=best;
 77         run;
 
 ERROR 772-580: Syntaxfehler: Konstanter oder dynamischer Wert erwartet.
 WARNING: Object will not be saved.
 NOTE:  Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit):
       real time           0.00 seconds
       cpu time            0.02 seconds
       
 NOTE: The SAS System stopped processing this step because of errors.
 78         
 79         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 16:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586178#M167305</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-04T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586181#M167307</link>
      <description>Try just applying a format to your dollar variable?&lt;BR /&gt;&lt;BR /&gt;format variable best12.;&lt;BR /&gt;&lt;BR /&gt;You always need a period after formats, it's missing in your code.</description>
      <pubDate>Wed, 04 Sep 2019 16:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586181#M167307</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-04T16:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586204#M167316</link>
      <description>&lt;PRE&gt;proc sgplot data=income;
histogram dollar;
format dollar best12.;
yaxis values=(0 to 62 by 5) grid;
xaxis values=(0 to 105E3 by 5E3);
run;

&lt;/PRE&gt;&lt;P&gt;I ran that without any changes in the xaxis.&lt;BR /&gt;&lt;BR /&gt;Furthermore: my goal is it to have minor ticks on the xaxis, how do I do that?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 17:26:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586204#M167316</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-04T17:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586220#M167324</link>
      <description>BEST isn't the format you want though, don't you want Exponential? You aren't using an exponential format. I just put BEST because it's what's you used.</description>
      <pubDate>Wed, 04 Sep 2019 18:20:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586220#M167324</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-04T18:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586225#M167326</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/287341"&gt;@Lacona&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hey all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to format the values of the xaxis from numeric to scientific notation, because I thought that might be an explanation why the tick intervals of 5000 don't work. It would be sufficient to have just minor ticks without notation.&lt;BR /&gt;Every format I could find here ( &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n0kdscfhkob956n196h4jixhibn5.htm&amp;amp;locale=de#n0le3fkbqipcldn101al4qv8x54" target="_blank" rel="noopener"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n0kdscfhkob956n196h4jixhibn5.htm&amp;amp;locale=de#n0le3fkbqipcldn101al4qv8x54&lt;/A&gt;) is&amp;nbsp;without explanation and not working also.&lt;/P&gt;
&lt;P&gt;Gross E8 worked previously with proc boxplot, but not with sgplot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where can I find explanation for the available formats and how can I change my xaxis values properly?&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="Bild 04.09.19 um 10.54.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32206i0317887B6758C025/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 04.09.19 um 10.54.jpg" alt="Bild 04.09.19 um 10.54.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         proc sgplot data=income;
 74         histogram dollar;
 75         yaxis values=(0 to 62 by 5) grid;
 76         xaxis values=(0 to 105E3 by 5E3) valuesformat=best;
 77         run;
 
 ERROR 772-580: Syntaxfehler: Konstanter oder dynamischer Wert erwartet.
 WARNING: Object will not be saved.
 NOTE:  Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit):
       real time           0.00 seconds
       cpu time            0.02 seconds
       
 NOTE: The SAS System stopped processing this step because of errors.
 78         
 79         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Thank you so much!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Note the dot after the word best&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;xaxis values=(0 to 105E3 by 5E3) valuesformat=best.;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Although as others have said, maybe you don't want the BEST. format in this case.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586225#M167326</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-04T19:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586226#M167327</link>
      <description>&lt;P&gt;Sorry, I'm completely new to SAS, never did anything like this before.&lt;BR /&gt;I can't find a list whatsoever for SAS formats and what they do and how they look like, so I don't know how they are supposed to be.&lt;BR /&gt;I tried this now:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;proc sgplot data=income;
histogram dollar;
format dollar 12.;
yaxis values=(0 to 62 by 5) grid;
xaxis values=(0 to 105E3 by 5E3);
run;&lt;/PRE&gt;&lt;P&gt;but no changes on the xaxis.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586226#M167327</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-04T19:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586227#M167328</link>
      <description>&lt;P&gt;You should probably bookmark the documentation page then:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=pgmsashome&amp;amp;docsetTarget=home.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=pgmsashome&amp;amp;docsetTarget=home.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From there you can usually find everything you need, in this case click on formats and then search for scientific notation. Note the document type field as well - you likely want "&lt;SPAN&gt;Document:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-bookTitle"&gt;SAS Formats and Informats: Reference" not DS2.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="xis-tgroup" cellspacing="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-alt"&gt;
&lt;DIV class="xis-paraTableFirst"&gt;&lt;A class="ng-scope" tabindex="0" title="" href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=ds2ref&amp;amp;docsetTarget=n0ztwi3h8vmwbyn1oo8calxd888q.htm&amp;amp;locale=en" data-docset-id="ds2ref" data-docset-version="9.4" data-original-href="n0ztwi3h8vmwbyn1oo8calxd888q.htm"&gt;Ew. Format&lt;/A&gt;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;TD class="xis-alt"&gt;
&lt;DIV class="xis-syntaxSimple"&gt;&lt;SPAN class="xis-keyword"&gt;E&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;w&lt;/SPAN&gt;.&lt;/DIV&gt;
&lt;DIV class="xis-paraTable"&gt;Writes numeric values in scientific notation.&lt;/DIV&gt;
&lt;DIV class="xis-paraTable"&gt;Product: Base SAS&lt;/DIV&gt;
&lt;DIV class="xis-paraTable"&gt;&lt;STRONG&gt;Document:&amp;nbsp;&lt;SPAN class="xis-bookTitle"&gt;SAS DS2 Language Reference&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=income;
histogram dollar;
format dollar 12.;
yaxis values=(0 to 62 by 5) grid;
xaxis values=(0 to 105E3 by 5E3);
&lt;FONT size="4" color="#FF0000"&gt;&lt;STRONG&gt;format dollar e8.;&lt;/STRONG&gt;&lt;/FONT&gt;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:12:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586227#M167328</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-04T19:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586228#M167329</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/287341"&gt;@Lacona&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Sorry, I'm completely new to SAS, never did anything like this before.&lt;BR /&gt;I can't find a list whatsoever for SAS formats and what they do and how they look like, so I don't know how they are supposed to be.&lt;BR /&gt;I tried this now:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=income;
histogram dollar;
format dollar 12.;
yaxis values=(0 to 62 by 5) grid;
xaxis values=(0 to 105E3 by 5E3);
run;&lt;/PRE&gt;
&lt;P&gt;but no changes on the xaxis.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't think the format command does anything in PROC SGPLOT, although it does work in most other procedures. In PROC SGPLOT you need the VALUESFORMAT= option of the XAXIS and/or YAXIS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;List of every known format in SAS 9.4:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=allprodslang&amp;amp;docsetTarget=syntaxByType-format.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=allprodslang&amp;amp;docsetTarget=syntaxByType-format.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586228#M167329</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-04T19:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586230#M167331</link>
      <description>SGPLOT will honour the format applied to a variable within the axis labels. It's often used when you need to control the order of bars for example so you code them as numeric and use a format to have the values displayed appropriately. &lt;BR /&gt;&lt;BR /&gt;ValuesFormat can be used as well - but I think it's usually used to override the format on the variable or when you have dates you want displayed differently. Or at least those are the use cases I've seen so far. &lt;BR /&gt;&lt;BR /&gt;Just tested on SAS 9.4M5&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:18:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586230#M167331</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-04T19:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586233#M167332</link>
      <description>&lt;P&gt;To confirm, you are trying to add the scientific notation format to the xaxis in your histogram?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this. I am using the SASHELP.CARS table that you probably have available:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Copy SASHELP.CARS, copy MSRP to Price. Price has no format*/
data cars;
	set sashelp.cars;
	keep Price;
	Price=MSRP;
run;

/*Default histogram. No format or new xaxis values*/
proc sgplot data=cars;
	histogram price;
run;

/*Add a format and new xaxis values range*/
proc sgplot data=cars;
	histogram price;
	xaxis values=(0 to 200000 by 25000);
	format price e8.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Graphs.jpg" style="width: 393px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32208iABB196C26DA13EEE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Graphs.jpg" alt="Graphs.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 19:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586233#M167332</guid>
      <dc:creator>Panagiotis</dc:creator>
      <dc:date>2019-09-04T19:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586274#M167350</link>
      <description>&lt;P&gt;Use e. format and option minor, and specify the values for major ticks only :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
call streaminit(67678568);
do i = 1 to 200;
    dollar = 1e5 * rand("Beta", 4, 4);
    output;
    end;
run;

proc sgplot data=test;
histogram dollar;
xaxis values=(0 to 105E3 by 1E4) minor minorcount=1 valuesformat=e8. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot11.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32216i9E3D5EE692063786/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot11.png" alt="SGPlot11.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 22:00:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586274#M167350</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-09-04T22:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586586#M167454</link>
      <description>&lt;P&gt;Yesss!!! It worked! Thank you all!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 01:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586586#M167454</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-06T01:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586588#M167456</link>
      <description>&lt;P&gt;I tried to run it with ew. but nothing changed.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 01:16:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586588#M167456</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-06T01:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting sgplot xaxis values?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586799#M167511</link>
      <description>ew is incorrect you need to replace that w by the width which is a number.</description>
      <pubDate>Fri, 06 Sep 2019 15:53:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-sgplot-xaxis-values/m-p/586799#M167511</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-06T15:53:45Z</dc:date>
    </item>
  </channel>
</rss>

