<?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: Financial Year Revenue Comparison (Month / Year) in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557547#M9931</link>
    <description>&lt;P&gt;Try it this way&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| bin _time span=1mon 
| stats sum(amount) as thismonth by _time
| eval finmon=strftime(_time,"%m")
| eval finmon=(8+finmon)%12
| eval previousyear=if(finmon&amp;gt;8,-1,0)
| eval finyear=strftime(_time,"%Y")
| eval finyear=previousyear+finyear
| eventstats sum(thismonth) as financialyear by finyear
| eval currentmonth=strftime(now(),"%B")
| eval currentmon=strftime(now(),"%m")
| eval currentmon=(8+currentmon)%12
| where finmon=currentmon
| table finyear thismonth financialyear&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 29 Jun 2021 07:16:11 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2021-06-29T07:16:11Z</dc:date>
    <item>
      <title>Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557413#M9928</link>
      <description>&lt;P&gt;can any one help&amp;nbsp; to write a Query for below scenario?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN&gt;Financial Year Revenue Comparison (Month / Year):&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="301"&gt;&lt;P&gt;&lt;SPAN&gt;Compare Revenue with current Financial Year of the month &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Vs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Compare Revenue with current-1 Financial Year of the month &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Vs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Compare Revenue with current-2 Financial Year of the month&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="301"&gt;&lt;P&gt;&lt;SPAN&gt;Current Financial Year Revenue Comparison&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Vs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Current-1 Financial Year Revenue Comparison&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Vs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Current-2 Financial Year Revenue Comparison&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN&gt;*Revenue – Sum of Total&amp;nbsp; amount&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN&gt;X-axis = current-2,current-1,current&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN&gt;Y-axis = amount&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 11:33:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557413#M9928</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-28T11:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557419#M9929</link>
      <description>&lt;P&gt;How about something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| bin _time span=1mon 
| stats sum(amount) as thismonth by _time
| eval finmon=strftime(_time,"%m")
| eval finmon=(8+finmon)%12
| eval previousyear=if(finmon&amp;gt;8,-1,0)
| eval finyear=strftime(_time,"%Y")
| eval finyear=previousyear+finyear
| eventstats sum(thismonth) as financialyear by finyear
| eval currentmonth=strftime(now(),"%B")
| eval currentmon=strftime(now(),"%m")
| eval currentmon=(8+currentmon)%12
| where finmon=currentmon
| table thismonth financialyear finyear
| transpose 0 header_field=finyear&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Jun 2021 12:48:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557419#M9929</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-28T12:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557533#M9930</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Actual Result i got for query you have shared" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14867i101ECB0F4ABFE9DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Actual Result.JPG" alt="Actual Result i got for query you have shared" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Actual Result i got for query you have shared&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excepted Result" style="width: 930px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14868i8A4EA61EB53C4E22/image-size/large?v=v2&amp;amp;px=999" role="button" title="Expected result.JPG" alt="Excepted Result" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Excepted Result&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks !! for the Query.&lt;/P&gt;&lt;P&gt;Please find the above attached actual result and excepted results SS and do needful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 06:22:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557533#M9930</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-29T06:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557547#M9931</link>
      <description>&lt;P&gt;Try it this way&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| bin _time span=1mon 
| stats sum(amount) as thismonth by _time
| eval finmon=strftime(_time,"%m")
| eval finmon=(8+finmon)%12
| eval previousyear=if(finmon&amp;gt;8,-1,0)
| eval finyear=strftime(_time,"%Y")
| eval finyear=previousyear+finyear
| eventstats sum(thismonth) as financialyear by finyear
| eval currentmonth=strftime(now(),"%B")
| eval currentmon=strftime(now(),"%m")
| eval currentmon=(8+currentmon)%12
| where finmon=currentmon
| table finyear thismonth financialyear&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 29 Jun 2021 07:16:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557547#M9931</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-29T07:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557601#M9932</link>
      <description>&lt;P&gt;Thank you !!!!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really helps a lot.....Query gives us a 90% solution&lt;/P&gt;&lt;P&gt;Can you&amp;nbsp; Please explain a logic behind that "8" below?&lt;BR /&gt;&lt;BR /&gt;| eval finmon=(8+finmon)%12&lt;BR /&gt;| eval previousyear=if(finmon&amp;gt;8,-1,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 13:17:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557601#M9932</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-29T13:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557603#M9933</link>
      <description>&lt;P&gt;The 8 shift the number of the month so that April is 0 (4+8 mod 12), which mean Jan-Mar will be 9-11 respectively - these months belong to the financial year beginning in the previous calendar year, so -1 is added to the year to get the financial year for these months.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 13:25:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557603#M9933</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-29T13:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557604#M9934</link>
      <description>&lt;P&gt;If your financial year begins in a different month to April, you will have to adjust the 8 accordingly&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 13:26:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557604#M9934</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-29T13:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557613#M9935</link>
      <description>&lt;P&gt;Great Got it!!!!!!!!!&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 14:14:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557613#M9935</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-29T14:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557789#M9936</link>
      <description>&lt;P&gt;Hi, Is that possible to plot like&amp;nbsp; Current, current-1 and current-2 instead of 2021,2020 and 2019 on x-axis?????&lt;/P&gt;&lt;P&gt;Because we are comparing both Yearly and monthly data over graph right??&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 11:34:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557789#M9936</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-30T11:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557793#M9937</link>
      <description>&lt;P&gt;I removed the adjustment for shifting the month since you only really need to recognise if the month is before April (&amp;lt;4) to know it is in the previous financial year. Now replacing year with current, current-1 etc&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| bin _time span=1mon 
| stats sum(amount) as thismonth by _time
| eval finmon=strftime(_time,"%m")
| eval previousyear=if(finmon&amp;lt;4,-1,0)
| eval finyear=strftime(_time,"%Y")
| eval finyear=previousyear+finyear
| eventstats sum(thismonth) as financialyear by finyear
| eval currentmonth=strftime(now(),"%B")
| eval currentmon=strftime(now(),"%m")
| eval currentyear=strftime(now(),"%Y")
| eval finyear=if(finyear=currentyear,"current","current-".(currentyear-finyear))
| where finmon=currentmon
| table finyear thismonth financialyear&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Jun 2021 12:01:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557793#M9937</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-30T12:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557795#M9938</link>
      <description>&lt;P&gt;Thank You !!! it's&amp;nbsp; working&amp;nbsp; .&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 12:08:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557795#M9938</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-06-30T12:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557978#M9939</link>
      <description>&lt;P&gt;if the financial year is starts from july 1st only change in the code is&amp;nbsp;&lt;STRONG&gt;&amp;nbsp;| eval previousyear=if(finmon&amp;lt;7,-1,0)&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Correct??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 06:08:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557978#M9939</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-07-01T06:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557986#M9940</link>
      <description>&lt;P&gt;Also only Current-2 data is displaying now in visualization&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 06:26:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557986#M9940</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-07-01T06:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557990#M9941</link>
      <description>&lt;P&gt;Correct&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 06:41:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557990#M9941</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-01T06:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557991#M9942</link>
      <description>&lt;P&gt;Not sure why that would be - can you post your current search (use a code block &amp;lt;/&amp;gt; for clarity)?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 06:43:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557991#M9942</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-01T06:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557994#M9943</link>
      <description>&lt;P&gt;index="home2"&lt;BR /&gt;| bin _time span=1mon&lt;BR /&gt;| stats sum(AMOUNT) as thismonth by _time&lt;BR /&gt;| eval finmon=strftime(_time,"%m")&lt;BR /&gt;| eval previousyear=if(finmon&amp;lt;4,-1,0)&lt;BR /&gt;| eval finyear=strftime(_time,"%Y")&lt;BR /&gt;| eval finyear=previousyear+finyear&lt;BR /&gt;| eventstats sum(thismonth) as financialyear by finyear&lt;BR /&gt;| eval currentmonth=strftime(now(),"%B")&lt;BR /&gt;| eval currentmon=strftime(now(),"%m")&lt;BR /&gt;| eval currentyear=strftime(now(),"%Y")&lt;BR /&gt;| eval finyear=if(finyear=currentyear,"current","current-".(currentyear-finyear))&lt;BR /&gt;| where finmon=currentmon&lt;BR /&gt;| table finyear thismonth financialyear&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same code yesterday i got results for current, current-1,current-2 but now it displaying only current-2 .......today change in the month happend i mean today is july 1st is that the case??&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 06:50:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557994#M9943</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-07-01T06:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557996#M9944</link>
      <description>&lt;P&gt;Possibly, your index doesn't yet have any data for this July, which would account for no current but that doesn't explain current-1 not being there. Try removing the where clause and have a look at the data to see if there is any data for last July&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 07:04:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/557996#M9944</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-01T07:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558000#M9945</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="venkata_0-1625123602628.png" style="width: 594px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14909i1DE224412E0A94FF/image-dimensions/594x279?v=v2" width="594" height="279" role="button" title="venkata_0-1625123602628.png" alt="venkata_0-1625123602628.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Above is the output after where clause is removed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 07:14:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558000#M9945</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-07-01T07:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558001#M9946</link>
      <description>&lt;P&gt;So it looks like you don't have data for all the months in the previous years. Either remove the table command or add the finmon field to the list to see which months are covered (still without the where clause)&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 07:19:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558001#M9946</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-01T07:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Financial Year Revenue Comparison (Month / Year)</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558004#M9947</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="venkata_0-1625124478252.png" style="width: 611px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14910i82CC372CD9537D11/image-dimensions/611x219?v=v2" width="611" height="219" role="button" title="venkata_0-1625124478252.png" alt="venkata_0-1625124478252.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Yes, you're correct&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;it doesn't have data for all the months in the previous years... this index i created with some random dummy data for testing purpose i guess in original data it might be their is a data presence for each and every month for pervious years as well.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 07:32:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Financial-Year-Revenue-Comparison-Month-Year/m-p/558004#M9947</guid>
      <dc:creator>venkata</dc:creator>
      <dc:date>2021-07-01T07:32:15Z</dc:date>
    </item>
  </channel>
</rss>

