<?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: Need to create a column showing whether a set of dates is Quarter 1 or Q2 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782714#M39901</link>
    <description>&lt;P&gt;The data for eventDate is stored as 01-01-2021 or dd-mm-yyyy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does "by 5" mean?&lt;/P&gt;</description>
    <pubDate>Sun, 28 Nov 2021 02:38:45 GMT</pubDate>
    <dc:creator>anonymous_user</dc:creator>
    <dc:date>2021-11-28T02:38:45Z</dc:date>
    <item>
      <title>Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782711#M39898</link>
      <description>&lt;P&gt;I need to know how to get two sets of date ranges to equal Q1 or Q2. For example, 01Jan2021 - 31Mar2021 = Q1 and 01Apr2021-30Jun2021 = Q2.&amp;nbsp; I thought this would be a cut and dry thing but I'm spinning my wheels for days on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I create this new column to show whether these date ranges are Q1 and Q2?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 02:10:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782711#M39898</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T02:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782712#M39899</link>
      <description>&lt;P&gt;You &lt;STRIKE&gt;have&lt;/STRIKE&gt; haven't shown how the date ranges are stored in a SAS data set.&amp;nbsp; The QTR function works fine with individual dates:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  do my_date='01jan2021'd to '30jun2021'd by 5;
    output;
  end;
  format my_date date9.;
run;
data want;
  set have;
  my_qtr=qtr(my_date);
run;
proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 02:33:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782712#M39899</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-11-28T02:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782714#M39901</link>
      <description>&lt;P&gt;The data for eventDate is stored as 01-01-2021 or dd-mm-yyyy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does "by 5" mean?&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 02:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782714#M39901</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T02:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782716#M39902</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@anonymous_user&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The data for eventDate is stored as 01-01-2021 or dd-mm-yyyy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What does "by 5" mean?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Instead of writing out every date for Jan through June of 2021 for the sample dataset, I wrote out every 5th date.&amp;nbsp; It's a smaller sample.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you didn't run the program and look at the proc print results, which would have answered your question.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 03:10:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782716#M39902</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-11-28T03:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782720#M39903</link>
      <description>&lt;P&gt;Is there a way that this can be used for 500k rows of data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to do a summary by quarter for the last data step:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;do eventDate='01jan2021' to '30jun2021';&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;format eventDate date9.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;my_qtr=qtr(eventDate);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data OUTPAT2;&lt;BR /&gt;merge OUTPAT want;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*E&amp;amp;M pull - over 147,000 rows*/&lt;BR /&gt;data EMpull;&lt;BR /&gt;set OUTPAT2 ;&lt;BR /&gt;where ( '99201' &amp;lt;= cpt &amp;lt;= '99215')&lt;BR /&gt;or (cpt between '99241' and '99245')&lt;BR /&gt;or (cpt between '99381' and '99397')&lt;BR /&gt;or (cpt between '99354' and '99355')&lt;BR /&gt;or (cpt between '99401' and '99412');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 07:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782720#M39903</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T07:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782750#M39904</link>
      <description>&lt;P&gt;What type of variable is EVENTDATE?&amp;nbsp; Run PROC CONTENTS on the source dataset and check.&lt;/P&gt;
&lt;P&gt;Is the TYPE of the variable numeric or character?&lt;BR /&gt;If numeric is their any FORMAT attached to it?&amp;nbsp; What FORMAT is attached?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the variable is numeric with a format used for displaying dates (DATE, MMDDYY, YYMMDD, etc) then you have a date variable.&amp;nbsp; Otherwise you will need to first convert EVENTDATE into date values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your variable has a DATE value then the QTR() function will return an integer from 1 to 4.&amp;nbsp; You will need to check the YEAR of the date if you only want the first two quarters in 2021.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 13:54:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782750#M39904</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-28T13:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782759#M39905</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;I'm trying to do a summary by quarter for the last data step:&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please be more specific. What do you mean by summary? PROC MEANS? PROC SUMMARY? Something else?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;What output do you want? A table that can be included in a report? A SAS data set? Something else? Show us an example of what you want.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 15:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782759#M39905</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-28T15:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782764#M39906</link>
      <description>&lt;P&gt;A PROC Summary showing total costs for each quarter for the EM codes.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 15:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782764#M39906</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782767#M39907</link>
      <description>&lt;P&gt;Just assign the QTR format to the date variable and use it in the CLASS statement. PROC SUMMARY will use the formatted values to build groups.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 16:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782767#M39907</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-28T16:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782769#M39908</link>
      <description>&lt;P&gt;So let's assume your source dataset is name MYDATA and the analysis variable is named COST.&lt;/P&gt;
&lt;P&gt;Here is code to run PROC SUMMARY on the subset of data that are EM codes that occurred in the first half of 2021.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=MYDATA ;
   where (cpt between '99201' and '99215')
      or (cpt between '99241' and '99245')
      or (cpt between '99381' and '99397')
      or (cpt between '99354' and '99355')
      or (cpt between '99401' and '99412')
   ;
   where also eventdate between '01JAN2021'd and '30JUN2021'd ;
   class eventdate ;
   format eventdate yyq6. ;
   var cost ;
   output out=WANT sum=QTR_COST;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This should result in three observations (assuming you have dates in both quarters) . One will be the total for all 6 months and the other two will be for the individual quarters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If EVENTDATE is NOT a DATE variable then first run a data step (or perhaps create a view) that creates a DATE variable you can use with the above code.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data for_summary;
  set mydata ;
  real_date = input(eventdate,anydtdte.);
  format real_date date9.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now just use REAL_DATE in place EVENTDATE in the PROC SUMMARY code.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 16:18:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782769#M39908</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-28T16:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782785#M39911</link>
      <description>&lt;P&gt;It worked but some of the dates under the 'real_date" column are not showing. (There are only 2 quarters in my data, btw.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I did:&lt;/P&gt;&lt;P&gt;data for_summary;&lt;BR /&gt;set OUTPAT ;&lt;BR /&gt;real_date = input(eventdate,anydtdte.);&lt;BR /&gt;format real_date date9.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc summary data=for_summary;&lt;BR /&gt;where (cpt between '99201' and '99215')&lt;BR /&gt;or (cpt between '99241' and '99245')&lt;BR /&gt;or (cpt between '99381' and '99397')&lt;BR /&gt;or (cpt between '99354' and '99355')&lt;BR /&gt;or (cpt between '99401' and '99412')&lt;BR /&gt;;&lt;BR /&gt;where also real_date between '01JAN2021'd and '30JUN2021'd;&lt;BR /&gt;class real_date ;&lt;BR /&gt;format real_date yyq6. ;&lt;BR /&gt;var cost ;&lt;BR /&gt;output out=EMpull2 sum=QTR_COST;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final output looks like this for some reason:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;real_date _TYPE_ _FREQ_ QTR_COST&lt;/P&gt;&lt;P&gt;.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 90160&amp;nbsp; &amp;nbsp; &amp;nbsp;$$$$$&lt;/P&gt;&lt;P&gt;2021Q1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 39753&amp;nbsp; &amp;nbsp; &amp;nbsp;$$$$$&lt;/P&gt;&lt;P&gt;2021Q2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50407&amp;nbsp; &amp;nbsp; &amp;nbsp;$$$$$&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 21:32:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782785#M39911</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T21:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782786#M39912</link>
      <description>&lt;P&gt;Looks good to me. The _type_ 0 observation contains the total sum.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 21:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782786#M39912</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-28T21:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782789#M39914</link>
      <description>&lt;P&gt;When running the first part, the real_date column isn't populating dates in all of the cells. Not sure why though. Also I'm noticing the dates are not accurate.&amp;nbsp; Is this suppose to be the case? For example, eventDate is 2021-06-18 but in real_date cell it says 01JUN2021.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 21:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782789#M39914</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-28T21:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782796#M39915</link>
      <description>&lt;P&gt;Change ANYDTDTE to ANYDTDTE10:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  eventdate = '2021-06-18';
  real_date = input(eventdate,anydtdte10.);
  format real_date date9.;
  put _all_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Nov 2021 23:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782796#M39915</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-11-28T23:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782797#M39916</link>
      <description>&lt;P&gt;Avoid the "any" informats, instead use the proper informat for the dates. Use YYMMDD10. for dates stored as strings like&amp;nbsp;&lt;SPAN&gt;2021-06-18.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 23:34:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782797#M39916</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-28T23:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782809#M39917</link>
      <description>&lt;P&gt;how would I rename to "year_qtr" in the proc summary section?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 02:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782809#M39917</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-29T02:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782829#M39920</link>
      <description>&lt;P&gt;Use a dataset option:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=MYDATA (rename=(eventdate=year_qtr));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and use the new name in the CLASS and FORMAT statements.&lt;/P&gt;
&lt;P&gt;Or use a LABEL statement.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 07:53:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782829#M39920</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-29T07:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a column showing whether a set of dates is Quarter 1 or Q2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782913#M39924</link>
      <description>&lt;P&gt;I did this and that worked:&lt;/P&gt;&lt;P&gt;output out= EMpull2 (rename=(sum=QTR_COST real_date=year_qtr) ) ;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 13:59:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-to-create-a-column-showing-whether-a-set-of-dates-is/m-p/782913#M39924</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2021-11-29T13:59:21Z</dc:date>
    </item>
  </channel>
</rss>

