<?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: I would like to know how to make fiscal year in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145604#M293</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Hi Peter,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;We are reading you guys loud and clear.&amp;nbsp; You would like more flexibility and out of the box functionality for creating and maintaining time periods within Visual Analytics.&amp;nbsp; We have added functionality around time based procedures and metrics in past releases, but we will look to add functionality around date formats within the application instead of having to use Base SAS or create a custom format.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Regards, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Ted Werner&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2015 21:14:56 GMT</pubDate>
    <dc:creator>ted_werner_sas_com</dc:creator>
    <dc:date>2015-02-02T21:14:56Z</dc:date>
    <item>
      <title>I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145598#M287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to know how to make fiscal year &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 11:12:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145598#M287</guid>
      <dc:creator>AnuragSharma</dc:creator>
      <dc:date>2015-01-30T11:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145599#M288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We often do that with the month of our observation period. We have our first month of observation start at 1 and then by month year we increment though our observation period. This gives a convenient way to track many things including the fiscal year. Here is a format we use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp; value FYfmt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1- 12 = 1998&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 13- 24 = 1999&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 25- 36 = 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 37- 48 = 2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 49- 60 = 2002&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 61- 72 = 2003&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 73- 84 = 2004&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 85- 96 = 2005&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 97-108 = 2006&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 109-120 = 2007&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 121-132 = 2008&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 133-144 = 2009&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 145-156 = 2010&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 157-168 = 2011&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 169-180 = 2012&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 181-192 = 2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 193-204 = 2014&lt;/P&gt;&lt;P&gt;&amp;nbsp; 205-216 = 2015&lt;/P&gt;&lt;P&gt;&amp;nbsp; 217-228 = 2016&lt;/P&gt;&lt;P&gt;&amp;nbsp; 229-240 = 2017&lt;/P&gt;&lt;P&gt;&amp;nbsp; 241-252 = 2018&lt;/P&gt;&lt;P&gt;&amp;nbsp; 253-264 = 2019&lt;/P&gt;&lt;P&gt;&amp;nbsp; 265-276 = 2020&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, our observation period, month 1, is our first month of our fiscal year and does not follow the calendar year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 15:58:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145599#M288</guid>
      <dc:creator>morgalr</dc:creator>
      <dc:date>2015-01-30T15:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145600#M289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whose fiscal year? You need to know which month of the year starts the specific organization's fiscal year.&lt;/P&gt;&lt;P&gt;It also helps if you have the date values you will use to base that decision on as a SAS date variable so you can use SAS date functions year and month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example the US Federal fiscal year starts in October (month of the year 10). So dates in a year after that belong to the next Fiscal year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a code example that creates some dates and the US federal fiscal year:&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;file print;&lt;/P&gt;&lt;P&gt;do month=1 to 12;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; date=mdy(month,1,2015);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; fedfiscalyear = year(date) + (month(date) ge 10);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; put date= mmddyy10. fedfiscalyear=&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your fiscal year of interest starts on a specific date the logic gets a bit more complicated but not much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 16:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145600#M289</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-30T16:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145601#M290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use INTNX with a shifted interval e.g. 'YEAR.10'&amp;nbsp; apply this to your dates.&amp;nbsp; It will return the first day of the FISCAL year in the case of YEAR.10 01OCTyear.&amp;nbsp; Use YEAR format to display as 4 digit year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;fiscal = intnx(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'YEAR.10'&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,date,&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; background-color: #ffffff;"&gt;format fiscal year.;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 16:45:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145601#M290</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-01-30T16:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145602#M291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There has been a discussion in another thread on how to do calculations based on fiscal year or financial year... &lt;A __default_attr="53658" __jive_macro_name="thread" class="jive_macro jive_macro_thread" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 18:56:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145602#M291</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2015-01-30T18:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145603#M292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in addition to Michelle,&lt;/P&gt;&lt;P&gt;development, make it happen.....&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Jan 2015 18:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145603#M292</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2015-01-31T18:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145604#M293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Hi Peter,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;We are reading you guys loud and clear.&amp;nbsp; You would like more flexibility and out of the box functionality for creating and maintaining time periods within Visual Analytics.&amp;nbsp; We have added functionality around time based procedures and metrics in past releases, but we will look to add functionality around date formats within the application instead of having to use Base SAS or create a custom format.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Regards, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Ted Werner&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 21:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145604#M293</guid>
      <dc:creator>ted_werner_sas_com</dc:creator>
      <dc:date>2015-02-02T21:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145605#M294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ted,&lt;/P&gt;&lt;P&gt;Thanks for your reply, good to experience the improvements and discus the ideas. This is what the community is all about...&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2015 05:41:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145605#M294</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2015-02-03T05:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145606#M295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ted,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your direct response. Adding something similar like the good INTNX - Function (as in Base SAS) would be a very great addition!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a lot of discussions with our colleagues of the financial department about different date calculations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Andreas Windisch&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2015 08:16:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145606#M295</guid>
      <dc:creator>AndiWindisch</dc:creator>
      <dc:date>2015-02-03T08:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145607#M296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ted,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great to hear that SAS looks into adding functionality creating and maintaining time periods within Visual Analytic. Just like Andi I like to plead for adding something like the very good INTNX - Function from SAS Base. That would help us a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Frank Boekamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 07:57:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145607#M296</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2015-05-22T07:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145608#M297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ted,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with Frank! Again today I received feedback in the SAS Visual Analytics class I taught where attendees were asking to have the INTNX function and other date-based functions instead of using the TreatAsNumber and nested functions a work arounds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 08:34:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/145608#M297</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2015-05-22T08:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: I would like to know how to make fiscal year</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/271722#M4278</link>
      <description>&lt;P&gt;this is exactly what we want. thanks for the response to the post.&lt;/P&gt;&lt;P&gt;our company utilizes a conversion of a date to a period/year/accounting week format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so Feb 1,2016 may be period 1/ year 2016/week 4/day 25 of the period&lt;/P&gt;&lt;P&gt;periods in my case are 28 days&amp;nbsp;&lt;/P&gt;&lt;P&gt;we even have cases where Dec 31, 2015 is day 1/year 2016/ period 1/week 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i guess what im suggesting is the ability to create my own calendar in VA so that when i say convert a date to any of the available formats it uses my custom date file. &amp;nbsp;so if i retrieve the MONTH of a date, it goes to the custom calendar and gets 01-13 for period 1 thru 13. &amp;nbsp;the month name would simply be "Period 6"&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2016 14:31:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/I-would-like-to-know-how-to-make-fiscal-year/m-p/271722#M4278</guid>
      <dc:creator>mhamlett</dc:creator>
      <dc:date>2016-05-19T14:31:08Z</dc:date>
    </item>
  </channel>
</rss>

