<?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: Compare current month vs previous month SAS Viya in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652475#M13806</link>
    <description>&lt;P&gt;I believe it's doable. Let's go!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's two pics of what I created:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture5.PNG" style="width: 327px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/40258i1A9852054F8F7525/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture5.PNG" alt="Comm_Capture5.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture6.PNG" style="width: 319px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/40259i9CD9389BF299D180/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture6.PNG" alt="Comm_Capture6.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here are the steps I took to achieve this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Create New data items&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Parameter:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;_par_fiscal_year&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt;, type is Character. To this parameter we will store the user selection from Drop-down list.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item: &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt;, Result Type is &lt;EM&gt;Date&lt;/EM&gt;, Format is &lt;EM&gt;Year4 (Year). &lt;/EM&gt;Here we parse the parameter &lt;FONT face="courier new,courier"&gt;_par_fiscal_year&lt;/FONT&gt;&amp;nbsp;to get the current year the end user wants in his comparison table. We will use &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt; later on to subset the data to two years that we will induce from Drop-Down list selection.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;DateFromMDY(1, 1, Parse(Substring('_par_fiscal_year'p, 1, 4),
'COMMA32.'))&lt;/PRE&gt;
&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item: &lt;FONT face="courier new,courier"&gt;Year (previous)&lt;/FONT&gt;, Result Type is &lt;EM&gt;Date&lt;/EM&gt;, Format is &lt;EM&gt;Year4 (Year).&amp;nbsp;&lt;/EM&gt;Here we parse the parameter &lt;FONT face="courier new,courier"&gt;_par_fiscal_year&lt;/FONT&gt;&amp;nbsp;to get the previous year the end user wants in his comparison table. We will use &lt;FONT face="courier new,courier"&gt;Year (previous)&lt;/FONT&gt;&amp;nbsp;alongside &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt; later on to subset the data to two years that we induce from Drop-Down list selection.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;DateFromMDY(1, 1, ( Parse(Substring('_par_fiscal_year'p, 1, 4),
'COMMA32.') - 1 ))&lt;/PRE&gt;
&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;My Year&lt;FONT face="arial,helvetica,sans-serif"&gt;, Result Type is &lt;EM&gt;Date, &lt;/EM&gt;Format is &lt;EM&gt;Year4 (Year). &lt;/EM&gt;Now we subset the data to two years based on rule "if user selection is 2019-20 then the comparison should be between 2018 and 2019".&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;IF ( ( 'Date (Year)'n = 'Year (current)'n ) OR ( 'Date (Year)'n =
'Year (previous)'n ) )
RETURN 'Date (Year)'n
ELSE .&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Drop-down box&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Category = &lt;FONT face="courier new,courier"&gt;finyear&lt;/FONT&gt;, Parameter = &lt;FONT face="courier new,courier"&gt;_par_fiscal_year, &lt;FONT face="arial,helvetica,sans-serif"&gt;Check in&amp;nbsp;&lt;EM&gt;Required &lt;/EM&gt;from Options pane&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3: Crosstab&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Columns: &lt;FONT face="courier new,courier"&gt;My Year&lt;/FONT&gt;, Rows: &lt;FONT face="courier new,courier"&gt;Col A&lt;/FONT&gt;, Measures: &lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;Measure&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Filter:&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;( 'My Year'n NotMissing )&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this and let me know how it went.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Petri&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2020 05:31:00 GMT</pubDate>
    <dc:creator>PetriRoine</dc:creator>
    <dc:date>2020-06-03T05:31:00Z</dc:date>
    <item>
      <title>Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652175#M13798</link>
      <description>&lt;P&gt;Hello Folks,&lt;/P&gt;&lt;P&gt;I want to compare current year with previous year dynamacially in SAS Viya&lt;/P&gt;&lt;P&gt;Actually i have a drop down list of finyear&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;2018-19&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;And in my list view i will have some columns&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ColumnA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Current year&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Previous year&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Rice&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;20000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;Wheat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 10000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 500&lt;/P&gt;&lt;P&gt;Oil&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;500&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;200&lt;/P&gt;&lt;P&gt;Now suppose if from drop down list someone will change the filter to &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;2019-20&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;then the comparision should be between &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;2019-20 with 2018-19&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Harsh Patel&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&lt;/FONT&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 09:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652175#M13798</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2020-06-01T09:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652178#M13799</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259069"&gt;@harshpatel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please describe how your "source data" is laid out, especially &lt;FONT face="courier new,courier"&gt;finyear&lt;/FONT&gt; is interesting? Does it look something like this?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture3.PNG" style="width: 283px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/40201i00CA246AF0AF8395/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture3.PNG" alt="Comm_Capture3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Petri&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 10:03:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652178#M13799</guid>
      <dc:creator>PetriRoine</dc:creator>
      <dc:date>2020-06-01T10:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652181#M13800</link>
      <description>Yes Petri,&lt;BR /&gt;Exactly like this</description>
      <pubDate>Mon, 01 Jun 2020 10:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652181#M13800</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2020-06-01T10:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652246#M13801</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259069"&gt;@harshpatel&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sounds like you want to compare the data for a given month with the same month from a different year. The basic calculation for this is easy to do by using the ParallelPeriod operator:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=vacdc&amp;amp;cdcVersion=8.5&amp;amp;docsetId=vareportdata&amp;amp;docsetTarget=p0dovqqp325peyn1dpijpxxmwj83.htm&amp;amp;locale=en#p1dn6xullue9hkn131dkuudpz2br"&gt;https://documentation.sas.com/?cdcId=vacdc&amp;amp;cdcVersion=8.5&amp;amp;docsetId=vareportdata&amp;amp;docsetTarget=p0dovqqp325peyn1dpijpxxmwj83.htm&amp;amp;locale=en#p1dn6xullue9hkn131dkuudpz2br&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, it is not so easy if you want a drop-down list to control which year's data is compared. I am not sure if it is possible to do this while also keeping a dynamic frame of reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe someone else can offer a way that this can be done.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something you &lt;STRONG&gt;can&lt;/STRONG&gt; do is have a selector that would pick "Number of years ago": 1 year ago, 2 years ago, and so on. Based on the value of this control, you could have a calculated item that would return different ParallelPeriod calculations for each selection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sam&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 14:18:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652246#M13801</guid>
      <dc:creator>Sam_SAS</dc:creator>
      <dc:date>2020-06-01T14:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652475#M13806</link>
      <description>&lt;P&gt;I believe it's doable. Let's go!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's two pics of what I created:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture5.PNG" style="width: 327px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/40258i1A9852054F8F7525/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture5.PNG" alt="Comm_Capture5.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture6.PNG" style="width: 319px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/40259i9CD9389BF299D180/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture6.PNG" alt="Comm_Capture6.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here are the steps I took to achieve this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Create New data items&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Parameter:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;_par_fiscal_year&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt;, type is Character. To this parameter we will store the user selection from Drop-down list.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item: &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt;, Result Type is &lt;EM&gt;Date&lt;/EM&gt;, Format is &lt;EM&gt;Year4 (Year). &lt;/EM&gt;Here we parse the parameter &lt;FONT face="courier new,courier"&gt;_par_fiscal_year&lt;/FONT&gt;&amp;nbsp;to get the current year the end user wants in his comparison table. We will use &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt; later on to subset the data to two years that we will induce from Drop-Down list selection.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;DateFromMDY(1, 1, Parse(Substring('_par_fiscal_year'p, 1, 4),
'COMMA32.'))&lt;/PRE&gt;
&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item: &lt;FONT face="courier new,courier"&gt;Year (previous)&lt;/FONT&gt;, Result Type is &lt;EM&gt;Date&lt;/EM&gt;, Format is &lt;EM&gt;Year4 (Year).&amp;nbsp;&lt;/EM&gt;Here we parse the parameter &lt;FONT face="courier new,courier"&gt;_par_fiscal_year&lt;/FONT&gt;&amp;nbsp;to get the previous year the end user wants in his comparison table. We will use &lt;FONT face="courier new,courier"&gt;Year (previous)&lt;/FONT&gt;&amp;nbsp;alongside &lt;FONT face="courier new,courier"&gt;Year (current)&lt;/FONT&gt; later on to subset the data to two years that we induce from Drop-Down list selection.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;DateFromMDY(1, 1, ( Parse(Substring('_par_fiscal_year'p, 1, 4),
'COMMA32.') - 1 ))&lt;/PRE&gt;
&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Calculated item:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;My Year&lt;FONT face="arial,helvetica,sans-serif"&gt;, Result Type is &lt;EM&gt;Date, &lt;/EM&gt;Format is &lt;EM&gt;Year4 (Year). &lt;/EM&gt;Now we subset the data to two years based on rule "if user selection is 2019-20 then the comparison should be between 2018 and 2019".&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;IF ( ( 'Date (Year)'n = 'Year (current)'n ) OR ( 'Date (Year)'n =
'Year (previous)'n ) )
RETURN 'Date (Year)'n
ELSE .&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Drop-down box&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Category = &lt;FONT face="courier new,courier"&gt;finyear&lt;/FONT&gt;, Parameter = &lt;FONT face="courier new,courier"&gt;_par_fiscal_year, &lt;FONT face="arial,helvetica,sans-serif"&gt;Check in&amp;nbsp;&lt;EM&gt;Required &lt;/EM&gt;from Options pane&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3: Crosstab&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Columns: &lt;FONT face="courier new,courier"&gt;My Year&lt;/FONT&gt;, Rows: &lt;FONT face="courier new,courier"&gt;Col A&lt;/FONT&gt;, Measures: &lt;FONT face="courier new,courier"&gt;&lt;FONT face="courier new,courier"&gt;Measure&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Filter:&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;PRE&gt;( 'My Year'n NotMissing )&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this and let me know how it went.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Petri&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 05:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652475#M13806</guid>
      <dc:creator>PetriRoine</dc:creator>
      <dc:date>2020-06-03T05:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Compare current month vs previous month SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652753#M13811</link>
      <description>&lt;P&gt;Thank you so much Petri,&lt;/P&gt;
&lt;P&gt;It works perfectly for me&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Compare-current-month-vs-previous-month-SAS-Viya/m-p/652753#M13811</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2020-06-03T04:38:01Z</dc:date>
    </item>
  </channel>
</rss>

