<?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: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979886#M378866</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/178542"&gt;@antor82&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would it help to create a broken x-axis? Last week,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32"&gt;@BrunoMueller&lt;/a&gt;&amp;nbsp;posted a &lt;A href="https://communities.sas.com/t5/Graphics-Programming/PROC-SGPLOT-axis-break-with-different-distribution-scale-before/m-p/979449/highlight/true#M25729" target="_blank" rel="noopener"&gt;nice solution&lt;/A&gt; demonstrating how this can be done. Here's my attempt to adapt his code to your requirements:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Store repetitive code elements in macro variables */

%let plot=scatterplot x=or y=predictors / subpixel=off primary=true group=grp
          xerrorupper=ucl xerrorlower=lcl legendlabel="predictors" name="scatter";
%let xopts=type=log griddisplay=on display=(ticks tickvalues) tickvalueattrs=(size=7);
%let yopts=reverse=true labelfitpolicy=split tickvalueattrs=(size=7) tickvaluehalign=left type=discrete 
           discreteopts=(tickvaluefitpolicy=none colorbands=even
                         colorbandsattrs=graphdatadefault(transparency=0.8));

/* Create the GTL template with a manually broken x-axis */

proc template;
  define statgraph forest_break;
    begingraph / datasymbols=(squarefilled);
      /* the column weights determine the space available */
      layout lattice / columns=3 rowdatarange=union columnweights=(0.35 0.25 0.4) ;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.6 viewmax=0.8
                                     minorticks=true tickvaluelist=(0.6 0.7 0.8)))
          yaxisopts=(display=(tickvalues line) &amp;amp;yopts)
          y2axisopts=(labelFitPolicy=Split);
          &amp;amp;plot;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.9 viewmax=1.11
                                     minorticks=true tickvaluelist=(0.9 0.95 1 1.05 1.1))
                     offsetmin=0.02)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          ReferenceLine x=1 / clip=false;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=1.16 viewmax=10
                                     minorticks=true tickvaluelist=(1.2 2 3 4 5 6 7 8 9 10))
                     offsetmin=0.0075)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          innermargin / align=right;
            axistable value=or  y=predictors / labelposition=min display=(label);
            axistable value=lcl y=predictors / labelposition=min display=(label);
            axistable value=ucl y=predictors / labelposition=min display=(label);
            axistable value=p   y=predictors / labelposition=min display=(label);
          endinnermargin;
        endlayout;
      endlayout;
    endgraph;
  end;
run;

/* Use the template to create the graph */

ods graphics / reset=all;

proc sgrender data=aha.forest template=forest_break;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result (omitting the titles for brevity)&lt;FONT face="arial,helvetica,sans-serif"&gt;:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="forest_break.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111721i57073498C425116D/image-size/large?v=v2&amp;amp;px=999" role="button" title="forest_break.png" alt="forest_break.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;(Note the spelling of the word "length".)&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Dec 2025 20:10:20 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2025-12-02T20:10:20Z</dc:date>
    <item>
      <title>modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979854#M378864</link>
      <description>&lt;P&gt;Hi all&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach the code and the resulting figure&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=aha.forest noautolegend nocycleattrs;
  styleattrs datasymbols=(squarefilled);
  scatter y=predictors x=or / xerrorupper=ucl xerrorlower=lcl group=grp;
  yaxistable or lcl ucl p / y=predictors location=inside position=right;
  refline 1 / axis=x noclip;
  xaxis type=log max=10 minor display=(nolabel)  valueattrs=(size=7) valuesformat=f2.0;
  yaxis display=(noticks nolabel)  fitpolicy=none reverse valueshalign=left
        colorbands=even colorbandsattrs=Graphdatadefault(transparency=0.8)  valueattrs=(size=7);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="download.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111706iD953CCC675C15600/image-size/large?v=v2&amp;amp;px=999" role="button" title="download.png" alt="download.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to amplify the x axis around 1 (let's say from 1.01 to 1.1) and then restart with a log scale.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you help me please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tks in advance&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Antonio&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 15:01:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979854#M378864</guid>
      <dc:creator>antor82</dc:creator>
      <dc:date>2025-12-02T15:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979858#M378865</link>
      <description>&lt;P&gt;Are you saying you want the range 1.01 to 1.1 to be on a linear scale?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 16:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979858#M378865</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-12-02T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979886#M378866</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/178542"&gt;@antor82&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would it help to create a broken x-axis? Last week,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32"&gt;@BrunoMueller&lt;/a&gt;&amp;nbsp;posted a &lt;A href="https://communities.sas.com/t5/Graphics-Programming/PROC-SGPLOT-axis-break-with-different-distribution-scale-before/m-p/979449/highlight/true#M25729" target="_blank" rel="noopener"&gt;nice solution&lt;/A&gt; demonstrating how this can be done. Here's my attempt to adapt his code to your requirements:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Store repetitive code elements in macro variables */

%let plot=scatterplot x=or y=predictors / subpixel=off primary=true group=grp
          xerrorupper=ucl xerrorlower=lcl legendlabel="predictors" name="scatter";
%let xopts=type=log griddisplay=on display=(ticks tickvalues) tickvalueattrs=(size=7);
%let yopts=reverse=true labelfitpolicy=split tickvalueattrs=(size=7) tickvaluehalign=left type=discrete 
           discreteopts=(tickvaluefitpolicy=none colorbands=even
                         colorbandsattrs=graphdatadefault(transparency=0.8));

/* Create the GTL template with a manually broken x-axis */

proc template;
  define statgraph forest_break;
    begingraph / datasymbols=(squarefilled);
      /* the column weights determine the space available */
      layout lattice / columns=3 rowdatarange=union columnweights=(0.35 0.25 0.4) ;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.6 viewmax=0.8
                                     minorticks=true tickvaluelist=(0.6 0.7 0.8)))
          yaxisopts=(display=(tickvalues line) &amp;amp;yopts)
          y2axisopts=(labelFitPolicy=Split);
          &amp;amp;plot;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.9 viewmax=1.11
                                     minorticks=true tickvaluelist=(0.9 0.95 1 1.05 1.1))
                     offsetmin=0.02)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          ReferenceLine x=1 / clip=false;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=1.16 viewmax=10
                                     minorticks=true tickvaluelist=(1.2 2 3 4 5 6 7 8 9 10))
                     offsetmin=0.0075)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          innermargin / align=right;
            axistable value=or  y=predictors / labelposition=min display=(label);
            axistable value=lcl y=predictors / labelposition=min display=(label);
            axistable value=ucl y=predictors / labelposition=min display=(label);
            axistable value=p   y=predictors / labelposition=min display=(label);
          endinnermargin;
        endlayout;
      endlayout;
    endgraph;
  end;
run;

/* Use the template to create the graph */

ods graphics / reset=all;

proc sgrender data=aha.forest template=forest_break;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result (omitting the titles for brevity)&lt;FONT face="arial,helvetica,sans-serif"&gt;:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="forest_break.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111721i57073498C425116D/image-size/large?v=v2&amp;amp;px=999" role="button" title="forest_break.png" alt="forest_break.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;(Note the spelling of the word "length".)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 20:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979886#M378866</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-12-02T20:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979887#M378867</link>
      <description>Wow, that's impressive.</description>
      <pubDate>Tue, 02 Dec 2025 20:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979887#M378867</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-12-02T20:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979888#M378868</link>
      <description>Maybe on a linear scale I will need a very large image to account for a clear visibility…. A double scale (linear at the beginning and log thereafter) could be more effective but I've read that this is not possible. I’ve tried a linear scale with broken axes but that gave me a very narrowed first part of the graph without any increase in visibility&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Dec 2025 20:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979888#M378868</guid>
      <dc:creator>antor82</dc:creator>
      <dc:date>2025-12-02T20:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979969#M378875</link>
      <description>&lt;P&gt;Thank You so much. This is an impressive improvement!!!&lt;/P&gt;
&lt;P&gt;I've corrected the spelling in the original dataset (tks for Your attention!!!)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, I'm not able to:&lt;/P&gt;
&lt;P&gt;1) keep the x-asix values in the format You posted (please refer to the attached figure for my mistake=too much decimals! and some values missing compared to Your figure)&lt;/P&gt;
&lt;P&gt;2) put three titles inside the full image (as it was in my previously attached file).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would You mind help me, please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Antonio&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="antor82_0-1764800174545.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111772iBBF06EF060595624/image-size/medium?v=v2&amp;amp;px=400" role="button" title="antor82_0-1764800174545.png" alt="antor82_0-1764800174545.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 22:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979969#M378875</guid>
      <dc:creator>antor82</dc:creator>
      <dc:date>2025-12-03T22:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979977#M378878</link>
      <description>I've put in the three titles (remembered how to do...&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;). The problem of the x-axis values still stays inn...</description>
      <pubDate>Wed, 03 Dec 2025 22:49:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979977#M378878</guid>
      <dc:creator>antor82</dc:creator>
      <dc:date>2025-12-03T22:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979996#M378882</link>
      <description>&lt;P&gt;You can specify a format for the tick values by adding the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatgraph/n0fksz728ytyz2n1ws13vlnkudyn.htm#n0ikfibft4b5mhn15hnugeevofc5" target="_blank" rel="noopener"&gt;TICKVALUEFORMAT= option&lt;/A&gt; to the LOGOPTS= list of options. In my test dataset I had associated format 5.3 to variables OR, LCL and UCL. Therefore, had I specified &lt;FONT face="courier new,courier"&gt;tickvalueformat=data&lt;/FONT&gt; (which I did not), I would have got the unwanted three decimals that you see. In the absence of a permanent format, SAS would have used BEST6. as the default.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, try to enforce that default:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#999999"&gt;/* Store repetitive code elements in macro variables */

%let plot=scatterplot x=or y=predictors / subpixel=off primary=true group=grp
          xerrorupper=ucl xerrorlower=lcl legendlabel="predictors" name="scatter";
%let xopts=type=log griddisplay=on display=(ticks tickvalues) tickvalueattrs=(size=7);
%let yopts=reverse=true labelfitpolicy=split tickvalueattrs=(size=7) tickvaluehalign=left type=discrete 
           discreteopts=(tickvaluefitpolicy=none colorbands=even
                         colorbandsattrs=graphdatadefault(transparency=0.8));

/* Create the GTL template with a manually broken x-axis */

proc template;
  define statgraph forest_break;
    begingraph / datasymbols=(squarefilled);
      /* the column weights determine the space available */
      layout lattice / columns=3 rowdatarange=union columnweights=(0.35 0.25 0.4) ;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.6 viewmax=0.8
                                     minorticks=true tickvaluelist=(0.6 0.7 0.8)
                                     &lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;tickvalueformat=best6.&lt;/FONT&gt;&lt;/STRONG&gt;))
          yaxisopts=(display=(tickvalues line) &amp;amp;yopts)
          y2axisopts=(labelFitPolicy=Split);
          &amp;amp;plot;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=0.9 viewmax=1.11
                                     minorticks=true tickvaluelist=(0.9 0.95 1 1.05 1.1)
                                     &lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;tickvalueformat=best6.&lt;/STRONG&gt;&lt;/FONT&gt;)
                     offsetmin=0.02)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          ReferenceLine x=1 / clip=false;
        endlayout;
        layout overlay / 
          xaxisopts=(&amp;amp;xopts logopts=(viewmin=1.16 viewmax=10
                                     minorticks=true tickvaluelist=(1.2 2 3 4 5 6 7 8 9 10)
                                     &lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;tickvalueformat=best6.&lt;/STRONG&gt;&lt;/FONT&gt;)
                     offsetmin=0.0075)
          yaxisopts=(display=none &amp;amp;yopts);
          &amp;amp;plot;
          innermargin / align=right;
            axistable value=or  y=predictors / labelposition=min display=(label);
            axistable value=lcl y=predictors / labelposition=min display=(label);
            axistable value=ucl y=predictors / labelposition=min display=(label);
            axistable value=p   y=predictors / labelposition=min display=(label);
          endinnermargin;
        endlayout;
      endlayout;
    endgraph;
  end;
run;

/* Use the template to create the graph */

ods graphics / reset=all;

proc sgrender data=aha.forest template=forest_break;
run;&lt;/FONT&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Dec 2025 08:29:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/979996#M378882</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-12-04T08:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/980191#M378906</link>
      <description>Tks so much!!!!&lt;BR /&gt;&lt;BR /&gt;Everything is working now!!!&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Dec 2025 09:44:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/980191#M378906</guid>
      <dc:creator>antor82</dc:creator>
      <dc:date>2025-12-05T09:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: modify xaxis with different ranges (some very close to 1.xx and others from 1.5 to 10)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/980204#M378909</link>
      <description>&lt;P&gt;Glad you got it working.&amp;nbsp; Please mark&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;as the correct / accepted answer, to close out this question.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 13:18:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-xaxis-with-different-ranges-some-very-close-to-1-xx-and/m-p/980204#M378909</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-12-05T13:18:33Z</dc:date>
    </item>
  </channel>
</rss>

