<?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: How to combine multiple reports? in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499082#M7992</link>
    <description>&lt;P&gt;I have 2 reports :-&lt;/P&gt;

&lt;P&gt;1) First report represents data of hit and flop movies for last 1 month  in pie-chart.&lt;/P&gt;

&lt;P&gt;2) Second report represents data of hindi hit/flop, english hit/flop, telugu hit/flop.&lt;/P&gt;

&lt;P&gt;I need to combine these 2 reports and get all data displayed in one screen. i.e. I need one pie chart showing total hit and flop movies and other 3 pie charts showing hindi hit/flop, english hit/flop, telugu hit/flop.&lt;/P&gt;</description>
    <pubDate>Mon, 03 Feb 2020 08:41:04 GMT</pubDate>
    <dc:creator>suchi01</dc:creator>
    <dc:date>2020-02-03T08:41:04Z</dc:date>
    <item>
      <title>How to combine multiple reports?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499078#M7988</link>
      <description>&lt;P&gt;Hello Splunkers,&lt;/P&gt;

&lt;P&gt;I have a scenario in which I have generated two reports - 1) First one shows data for last 6 months,  visualized as a line chart (Data is:- count of total movie releases and total hit movies )&lt;BR /&gt;
                                                                                                       2) Second shows data of last for last 6 month, visualized as line chart (data is :- count of Hindi movies , English movies, Telugu movies)&lt;/P&gt;

&lt;P&gt;Is it possible to combine these two reports?&lt;BR /&gt;
If yes please guide me how this could be done.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 13:15:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499078#M7988</guid>
      <dc:creator>suchi01</dc:creator>
      <dc:date>2020-01-30T13:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple reports?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499079#M7989</link>
      <description>&lt;P&gt;There are a few ways to combine reports.  Please share your queries so we can offer solutions.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 14:26:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499079#M7989</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-01-30T14:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple reports?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499080#M7990</link>
      <description>&lt;P&gt;You can start with something like this...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your search that finds all of each movie 
| eval TotalCount=1
| eval HitCount=if (this is a hit,1,0)
| eval HindiCount= if (this is Hindi,1,0)
| eval TeluguCount= if (this is Telugu,1,0)
| eval EnglishCount= if (this is English,1,0)
| timechart sum(*Count) as *Count
| rename *Count as *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 Jan 2020 22:41:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499080#M7990</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2020-01-31T22:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple reports?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499081#M7991</link>
      <description>&lt;P&gt;Sample:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| gentimes start=01/01/2019
| eval _time=starttime
| timechart span=1month count
| eval total_movie_releases=random() % 100 + count ,hit_movies=random() % 10 + count
| sort 6 - _time
| fields - count
`comment("this is your first query sample")`
| append [| gentimes start=01/01/2019
| eval _time=starttime
| timechart span=1month count
| eval Hindi_movies=random() % 50 + count , English_movies=random() % 40 + count , Telugu_movies=random() % 10 + count 
| sort 6 - _time
| fields - count]
`comment("this is your second query sample")`
`comment("from here, the logic")`
| selfjoin _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Recommend:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your_first_query
| append [ search your_second_query ]
| selfjoin _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hi, @suchi01&lt;BR /&gt;
I don't know your query details. This works.&lt;BR /&gt;
But it's slow, maybe.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 01:13:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499081#M7991</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-01T01:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple reports?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499082#M7992</link>
      <description>&lt;P&gt;I have 2 reports :-&lt;/P&gt;

&lt;P&gt;1) First report represents data of hit and flop movies for last 1 month  in pie-chart.&lt;/P&gt;

&lt;P&gt;2) Second report represents data of hindi hit/flop, english hit/flop, telugu hit/flop.&lt;/P&gt;

&lt;P&gt;I need to combine these 2 reports and get all data displayed in one screen. i.e. I need one pie chart showing total hit and flop movies and other 3 pie charts showing hindi hit/flop, english hit/flop, telugu hit/flop.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 08:41:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-combine-multiple-reports/m-p/499082#M7992</guid>
      <dc:creator>suchi01</dc:creator>
      <dc:date>2020-02-03T08:41:04Z</dc:date>
    </item>
  </channel>
</rss>

