<?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: Problem with set up graph in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779182#M248134</link>
    <description>I don't ignore, however I had to leave my computer and I will come back to that tomorrow with any suggestions.  I am very grateful for your help</description>
    <pubDate>Mon, 08 Nov 2021 18:15:55 GMT</pubDate>
    <dc:creator>Gieorgie</dc:creator>
    <dc:date>2021-11-08T18:15:55Z</dc:date>
    <item>
      <title>Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779083#M248098</link>
      <description>&lt;P&gt;I have a problem with setting up two graphics, one is fine, as in the bottom,&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="Gieorgie_0-1636363078456.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65471iDFA9FB1304AA106D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_0-1636363078456.png" alt="Gieorgie_0-1636363078456.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;while the other comes out so I don't know what it's caused by. The appendix in the second chart converts dates to some numerical values.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_1-1636363097344.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65472i6DC798DD564E1ED2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_1-1636363097344.png" alt="Gieorgie_1-1636363097344.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is my code:&lt;/P&gt;
&lt;PRE&gt;*/GRAPH #1*/
proc summary data=diff nway;
    class policy_vintage;
    format policy_vintage vintf.;
    var POLICY_TODAY POLICY_PRIOR;
    output out=newdiff sum=;
	
proc sql;
    create table diff1 as
        select today.policy_vintage as policy_vintage
             , POLICY_TODAY
             , POLICY_PRIOR
			 , POLICY_TODAY - POLICY_PRIOR as DIFFRENCE
        from newdiff today
        LEFT JOIN
             (select *
              from _work.POLICY_VINTAGE_WEEKLY
              where run_date &amp;lt; today()
              having run_date = max(run_date)
             ) prior
        ON today.policy_vintage = prior.policy_vintage
   ;
quit;

/*GRAPH #2 /
proc summary data=tablea_new nway;
    class policy_vintage;
    format policy_vintage vintf.;
    var AKTYWNE WYGASLE;
    output out=newtabe sum=;

proc sql;
    create table diff_policy as
		select
		today.policy_vintage 
             , today.WYGASLE as EXPIRED_TODAY
             , prior.WYGASLE as EXPIRED_PRIOR
			 , today.AKTYWNE as ACTIVE_TODAY
             , prior.AKTYWNE as ACTIVE_PRIOR
			 , today.WYGASLE - prior.WYGASLE as DIFF_EXP
			 , today.AKTYWNE - prior.AKTYWNE as DIFF_ACT
        from newtabe today
        LEFT JOIN
             (select *
              from _work.policy_weekly
              where run_date &amp;lt; today() 
              having run_date = max(run_date)
             ) prior
        ON today.policy_vintage = prior.policy_vintage
   ;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 09:24:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779083#M248098</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T09:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779087#M248100</link>
      <description>&lt;P&gt;We don't have your data. Can you please share it with us, as SAS data step code (&lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;instructions&lt;/A&gt;)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You didn't show any code for PROC SGPLOT. Can you please show us the entire code you are working with?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 10:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779087#M248100</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T10:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779093#M248101</link>
      <description>&lt;P&gt;Hi, here is data from log:&lt;/P&gt;
&lt;PRE&gt;data WORK.DIFF1;
  infile datalines dsd truncover;
  input policy_vintage:VINTF. POLICY_TODAY:32. POLICY_PRIOR:32. DIFFRENCE:32.;
  format policy_vintage VINTF.;
datalines;
OLD 2932 2939 -7
2019-12 75 75 0
2020-01 60 60 0
2020-02 62 62 0
2020-03 72 72 0
2020-04 70 69 1
2020-05 85 85 0
2020-06 85 85 0
2020-07 108 109 -1
2020-08 101 101 0
2020-09 96 96 0
2020-10 108 109 -1
2020-11 118 118 0
2020-12 91 91 0
2021-01 76 77 -1
;;;;&lt;BR /&gt;proc sgplot data=diff1;&lt;BR /&gt;where policy_vintage gt &amp;amp;date_old.;&lt;BR /&gt;series x=policy_vintage y=POLICY_TODAY / markerattrs=(color=vligb symbol=circlefilled size=20) &lt;BR /&gt;lineattrs=(color=vligb thickness=2);&lt;BR /&gt;series x=policy_vintage y=POLICY_PRIOR / y2axis markerattrs=(color=salmon symbol=circlefilled size=9) &lt;BR /&gt;lineattrs=(color=salmon thickness=2);&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;Second one :&lt;/P&gt;
&lt;PRE&gt;data WORK.DIFF_POLICY_ACT;
  infile datalines dsd truncover;
  input policy_vintage:VINTF. ACTIVE_TODAY:32. ACTIVE_PRIOR:32. DIFF_ACT:32.;
  format policy_vintage VINTF.;
datalines;
2021-12 8928 8864 64
2022-01 9546 9553 -7
2022-02 8190 8193 -3
2022-03 9259 9269 -10
2022-04 9061 9066 -5
2022-05 8784 8790 -6
2022-06 9146 9151 -5
2022-07 9408 9412 -4
2022-08 8302 8304 -2
2022-09 8948 8942 6
2022-10 8773 8614 159
2022-11 902 743 159
2022-12 414 413 1
2023-01 401 402 -1
2023-02 384 384 0
;;;;&lt;BR /&gt;proc sgplot data=diff_policy_act;&lt;BR /&gt;where policy_vintage gt &amp;amp;gv_date_dly.;&lt;BR /&gt;series x=policy_vintage y=ACTIVE_TODAY / markerattrs=(color=vligb symbol=circlefilled size=2) &lt;BR /&gt;lineattrs=(color=vligb thickness=2);&lt;BR /&gt;series x=policy_vintage y=ACTIVE_PRIOR / y2axis markerattrs=(color=salmon symbol=circlefilled size=9) &lt;BR /&gt;lineattrs=(color=salmon thickness=2);&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Nov 2021 11:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779093#M248101</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T11:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779095#M248102</link>
      <description>&lt;P&gt;Hello, thank you for providing the data in the requested format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I still can't use your code as I don't have the VINTF. format and informat, and I don't have the value of your macro variable&amp;nbsp;&amp;amp;gv_date_dly.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 11:21:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779095#M248102</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T11:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779096#M248103</link>
      <description>&lt;P&gt;Please see below code:&lt;/P&gt;
&lt;P&gt;gv_date_dl - its came from promt&lt;/P&gt;
&lt;PRE&gt;%let date_old=%sysfunc(intnx(year,%sysfunc(Today()),-2,s));
%put &amp;amp;=date_old;
proc format;
    value vintf low-&amp;amp;date_old = 'OLD' other=[yymmd7.];
run;
%let gv_date_dly=%sysevalf(%bquote('&amp;amp;date_dly.'d));&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Nov 2021 11:27:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779096#M248103</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T11:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779097#M248104</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let gv_date_dly=%sysevalf(%bquote('&amp;amp;date_dly.'d));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;There is no &amp;amp;date_dly macro variable to use in your code. And you do NOT need to format macro variables, I have removed the unnecessary formatting of macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How about this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let date_old=%sysfunc(intnx(year,%sysfunc(Today()),-2,s));
%put &amp;amp;=date_old;
proc format;
    value vintf low-&amp;amp;date_old = 'OLD' other=[yymmd7.];
run;
%let gv_date_dly=&amp;amp;date_old;

data WORK.DIFF_POLICY_ACT;
  infile datalines truncover;
  input policy_vintage:anydtdte. ACTIVE_TODAY:32. ACTIVE_PRIOR:32. DIFF_ACT:32.;
  format policy_vintage yymmd7.;
datalines;
2021-12 8928 8864 64
2022-01 9546 9553 -7
2022-02 8190 8193 -3
2022-03 9259 9269 -10
2022-04 9061 9066 -5
2022-05 8784 8790 -6
2022-06 9146 9151 -5
2022-07 9408 9412 -4
2022-08 8302 8304 -2
2022-09 8948 8942 6
2022-10 8773 8614 159
2022-11 902 743 159
2022-12 414 413 1
2023-01 401 402 -1
2023-02 384 384 0
;

proc sgplot data=diff_policy_act;
where policy_vintage gt &amp;amp;gv_date_dly.;
series x=policy_vintage y=ACTIVE_TODAY / markerattrs=(color=vligb symbol=circlefilled size=2) 
lineattrs=(color=vligb thickness=2);
series x=policy_vintage y=ACTIVE_PRIOR / y2axis markerattrs=(color=salmon symbol=circlefilled size=9) 
lineattrs=(color=salmon thickness=2);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This produces what looks like a reasonable graph. Is it what you want?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 11:38:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779097#M248104</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T11:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779107#M248107</link>
      <description>&lt;P&gt;Thanks for the reply &amp;amp; gv_date_dly .; is the promt in which we set today's reporting date.&lt;BR /&gt;while data_old is used to aggregate dates older than -2 years.&lt;/P&gt;
&lt;P&gt;When i runed your code its nothing special happend. Still I see such a graph&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_0-1636375499156.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65473i6664C5FF4BFF98FE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_0-1636375499156.png" alt="Gieorgie_0-1636375499156.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 12:45:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779107#M248107</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T12:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779134#M248112</link>
      <description>&lt;PRE&gt;proc sql;
    create table diff_policy_act as
		select
		 akty.policy_vintage as date
			 ,akty.AKTYWNE as TODAY
			 ,prior.AKTYWNE as PRIOR
        from policy_vintage_weekly2 akty
		        LEFT JOIN
             (select *
              from _work.policy_weekly
              where run_date &amp;lt; today() 
			  and policy_vintage gt &amp;amp;gv_date_dly.
              having run_date = max(run_date)
             ) prior
        ON akty.policy_vintage = prior.policy_vintage
;
quit;
proc sgplot data=diff_policy_act;
series x=date y=TODAY / markerattrs=(color=vligb symbol=circlefilled size=2) 
          lineattrs=(color=vligb thickness=2);
series x=date y=PRIOR / y2axis markerattrs=(color=salmon symbol=circlefilled size=9) 
          lineattrs=(color=salmon thickness=2);
run;&lt;/PRE&gt;
&lt;P&gt;I got like a below dataset:&lt;/P&gt;
&lt;PRE&gt;data WORK.DIFF_POLICY_ACT;
  infile datalines dsd truncover;
  input date:YYMMD7. TODAY:32. PRIOR:32.;
  format date YYMMD7.;
datalines;
2021-11 6778 7091
2021-12 8940 8864
2022-01 9549 9553
2022-02 8195 8193
2022-03 9270 9269
2022-04 9070 9066
2022-05 8792 8790
2022-06 9161 9151
2022-07 9416 9412
2022-08 8316 8304
;;;;&lt;/PRE&gt;
&lt;P&gt;My erro is same but i expect get some like a below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_0-1636382834468.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65486iC5614B5261ABE746/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_0-1636382834468.png" alt="Gieorgie_0-1636382834468.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>Mon, 08 Nov 2021 14:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779134#M248112</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T14:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779139#M248113</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;My erro is same but i expect get some like a below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;I don't know what error you are referring to. Please explain in much more detail.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 14:58:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779139#M248113</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T14:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779142#M248114</link>
      <description>&lt;P&gt;Sorry i lost my mind. I mean still got this : Why i dont see any date and why line its look like this ? How to do to get the graphs as shown above&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_0-1636383601568.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65487i5275F40330A1B86D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_0-1636383601568.png" alt="Gieorgie_0-1636383601568.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779142#M248114</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T15:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779145#M248117</link>
      <description>&lt;P&gt;Your date values look really strange, compared to the data provided.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also assume you changed the x axis type to discrete so that the "old" values are all "together"&lt;/P&gt;
&lt;P&gt;See this sample program below to illustrate what I mean&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data timeseries;
  do year = 2018 to 2022;
    do month = 1 to 12 by 3;
      someDate = mdy(month,1,year);
      value = rand("integer", 50, 100);
      output;
    end;
  end;
  format
    someDate yymmd7.
    value comma15.
  ;
run;

proc format;
    value vintf (default=7)
      low - "31dec2020"d = 'OLD'
      other=[yymmd7.]
  ;
run;


proc sgplot data=timeseries;
  series x=someDate y=value;
run;
proc sgplot data=timeseries;
  series x=someDate y=value;
  format someDate vintf.;
run;
proc sgplot data=timeseries;
  series x=someDate y=value;
  format someDate vintf.;
  xaxis type=discrete;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:27:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779145#M248117</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-11-08T15:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779147#M248118</link>
      <description>&lt;P&gt;The code I provided produces this graph:&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="Capture.PNG" style="width: 565px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65488iD18A06F00A1872B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you run the EXACT code I provided, do you get the result I am showing here?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779147#M248118</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T15:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779152#M248119</link>
      <description>Run a proc freq on your policy_vintage and post that output please.&lt;BR /&gt;&lt;BR /&gt;proc freq data=DIFF_POLICY_ACT;&lt;BR /&gt;table policy_vintage;&lt;BR /&gt;format policy_vintage;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc freq data=diff_policy_act;&lt;BR /&gt;table policy_vintage;&lt;BR /&gt;format policy_vintage vintf.;&lt;BR /&gt;run;</description>
      <pubDate>Mon, 08 Nov 2021 16:22:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779152#M248119</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-08T16:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779156#M248121</link>
      <description>&lt;P&gt;Just what does a "Policy_vintage" value of 3328-12 mean? Typically, and from the axis of the first graph, that might mean year 3328 with a months of December. So, what policy do you have that a date in 3328????&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that somewhere along the line you have some values that are not dates being treated as such or possibly you are aggregating dates (sum or similar) so that you create values that are way of your expected range.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 16:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779156#M248121</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-11-08T16:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779163#M248127</link>
      <description>I have no idea why it shows this date and that's the problem.  As on another chart, I showed that it creates ok</description>
      <pubDate>Mon, 08 Nov 2021 17:21:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779163#M248127</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T17:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779169#M248130</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I have no idea why it shows this date and that's the problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Do you actually LOOK in the data set named DIFF_POLICY_ACT with your own eyes and see what is in there? Can you show us this data set (screen capture is fine)? You can do some debugging yourself.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Did you try the suggestion by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;to run PROC FREQ on this data set both with and without the formats? What happened?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please don't ignore the suggestions people make for debugging this.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 17:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779169#M248130</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-08T17:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779182#M248134</link>
      <description>I don't ignore, however I had to leave my computer and I will come back to that tomorrow with any suggestions.  I am very grateful for your help</description>
      <pubDate>Mon, 08 Nov 2021 18:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779182#M248134</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-08T18:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779274#M248159</link>
      <description>&lt;P&gt;Hi Reeza below first one screen :&lt;/P&gt;
&lt;PRE&gt;proc freq data=DIFF_POLICY_ACT;
table policy_vintage;
format policy_vintage;
run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_0-1636442685360.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65512iA31DC9F4CBD66BA1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_0-1636442685360.png" alt="Gieorgie_0-1636442685360.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is for :&lt;/P&gt;
&lt;PRE&gt;proc freq data=diff_policy_act;
table policy_vintage;
format policy_vintage vintf.;
run; &lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gieorgie_1-1636442747000.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65513i0509B8788F1D1954/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gieorgie_1-1636442747000.png" alt="Gieorgie_1-1636442747000.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, 09 Nov 2021 07:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779274#M248159</guid>
      <dc:creator>Gieorgie</dc:creator>
      <dc:date>2021-11-09T07:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with set up graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779377#M248199</link>
      <description>You need to show the full list.</description>
      <pubDate>Tue, 09 Nov 2021 17:07:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-with-set-up-graph/m-p/779377#M248199</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-09T17:07:17Z</dc:date>
    </item>
  </channel>
</rss>

