<?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: Time Range Report not considerated with input lookup in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605789#M210661</link>
    <description>&lt;P&gt;Is that help ? because on code source there is&amp;nbsp; confidential information&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div class="control-group-container"&amp;gt;
    &amp;lt;div class="control-group col-1 timeinput earliest"&amp;gt;
        &amp;lt;label for="earliest_view56386" class="control-label" title="Earliest:"&amp;gt;Earliest:&amp;lt;/label&amp;gt;
        &amp;lt;div class="controls"&amp;gt;
            &amp;lt;div class="input-append"&amp;gt;
                &amp;lt;input type="text" size="5" value="" class="earliest_input timerangepicker-relative-earliest-time" id="earliest_view56386"&amp;gt;&amp;lt;div class="btn-group timerangepicker-relative_range_unit shared-controls-syntheticselectcontrol control-default" data-cid="view56399" data-view="views/shared/controls/SyntheticSelectControl" data-name="relative_range_unit" &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jul 2022 13:50:44 GMT</pubDate>
    <dc:creator>brad_</dc:creator>
    <dc:date>2022-07-15T13:50:44Z</dc:date>
    <item>
      <title>Why is Time Range Report not considerate with input lookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605266#M210471</link>
      <description>&lt;P&gt;Hello, the request below works perfectly thanks to the help found on this forum.&lt;BR /&gt;Now I would like to automate this request to have it every week to receive it as a weekly report.&lt;BR /&gt;I have tested the time range options but I have the impression that it is not consideration&lt;/P&gt;
&lt;PRE&gt;| inputlookup file1.csv
| rename count as "file1"
| append
    [| inputlookup file2.csv |
     rename count as "file2" ]
| append
    [| inputlookup file3.csv
    |  rename count as "file3" ]
| append
    [| inputlookup file4.csv
    |  rename count as "file4" ]
| append
    [| inputlookup file5.csv | dedup _time 
    |  rename count as "file5" ]
| append
    [| inputlookup file6.csv
    |  rename count as "file6" ]
| where _time &amp;gt; strptime("2022-06-26","%Y-%m-%d") AND _time &amp;lt; strptime("2022-07-04","%Y-%m-%d")
| stats values(*) as * by _time
| addtotals col=t row=f label=Total labelfield=_time&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brad__0-1657615438030.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20490iE84F52DAE141FC75/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brad__0-1657615438030.png" alt="brad__0-1657615438030.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 17:05:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605266#M210471</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T17:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605272#M210474</link>
      <description>&lt;P&gt;Assuming your time picker input creates a token called timepicker, try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup file1.csv
| rename count as "file1"
| append
    [| inputlookup file2.csv |
     rename count as "file2" ]
| append
    [| inputlookup file3.csv
    |  rename count as "file3" ]
| append
    [| inputlookup file4.csv
    |  rename count as "file4" ]
| append
    [| inputlookup file5.csv | dedup _time 
    |  rename count as "file5" ]
| append
    [| inputlookup file6.csv
    |  rename count as "file6" ]
| where _time &amp;gt;= relative_time(now(), $timepicker.earliest$) AND _time &amp;lt; relative_time(now(), $timepicker.latest$)
| stats values(*) as * by _time
| addtotals col=t row=f label=Total labelfield=_time&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 12 Jul 2022 09:19:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605272#M210474</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-12T09:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605308#M210488</link>
      <description>&lt;P&gt;I try different way but not working preset, relative, real-time...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="timepicker.PNG" style="width: 647px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20494iDBA75BBB2A0D2D2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="timepicker.PNG" alt="timepicker.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;the answer always the same "No results found. Try expanding the time range."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 15:49:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605308#M210488</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-12T15:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605319#M210492</link>
      <description>&lt;P&gt;Can you share your dashboard source code in a code block &amp;lt;/&amp;gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 17:28:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605319#M210492</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-12T17:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605789#M210661</link>
      <description>&lt;P&gt;Is that help ? because on code source there is&amp;nbsp; confidential information&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div class="control-group-container"&amp;gt;
    &amp;lt;div class="control-group col-1 timeinput earliest"&amp;gt;
        &amp;lt;label for="earliest_view56386" class="control-label" title="Earliest:"&amp;gt;Earliest:&amp;lt;/label&amp;gt;
        &amp;lt;div class="controls"&amp;gt;
            &amp;lt;div class="input-append"&amp;gt;
                &amp;lt;input type="text" size="5" value="" class="earliest_input timerangepicker-relative-earliest-time" id="earliest_view56386"&amp;gt;&amp;lt;div class="btn-group timerangepicker-relative_range_unit shared-controls-syntheticselectcontrol control-default" data-cid="view56399" data-view="views/shared/controls/SyntheticSelectControl" data-name="relative_range_unit" &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 13:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605789#M210661</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T13:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605790#M210662</link>
      <description>&lt;P&gt;Not really, that is the source of the browser html for the timepicker by the looks of it.&lt;/P&gt;&lt;P&gt;Let me put it another way, how do you know the time is not being considered and how are you specifying which time frame to use in the report?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 14:21:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605790#M210662</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-15T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605812#M210670</link>
      <description>&lt;P&gt;Sorry i understand code source&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;bb-test&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;TEST&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| file1.csv
| rename count as "file1"
| append
    [| inputlookup file2.csv |
     rename count as "file2" ]
| append
    [| inputlookup file3.csv
    |  rename count as "file3" ]
| append
    [| inputlookup file4.csv
    |  rename count as "file4" ]
| append
    [| inputlookup file5.csv | dedup _time 
    |  rename count as "file5" ]
| append
    [| inputlookup file6.csv
    |  rename count as "file6" ]
| where _time &amp;amp;gt;= relative_time(now(), $timepicker.earliest$) AND _time &amp;amp;lt; relative_time(now(), $timepicker.latest$)
| stats values(*) as * by _time
| addtotals col=t row=f label=Total labelfield=_time&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-7d@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 15:30:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605812#M210670</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T15:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605814#M210671</link>
      <description>&lt;P&gt;How i know it is not working&lt;/P&gt;&lt;P&gt;Because when i fill 7 days or any other date i have no result&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20554iD83959754B1C23C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 15:34:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605814#M210671</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T15:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605823#M210676</link>
      <description>&lt;P&gt;If that's your entire source code then it doesn't work because you don't have a timepicker input&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 16:23:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605823#M210676</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-15T16:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605824#M210677</link>
      <description>&lt;P&gt;Yes it is so. What does it mean i can't have another way to have timepicker input&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 16:27:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605824#M210677</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T16:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605825#M210678</link>
      <description>&lt;P&gt;Your code uses a token called "timepicker" - if you add a timepicker input to your dashboard with a token name of "timepicker" this will resolve the input error you are seeing.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 16:41:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605825#M210678</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-15T16:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605838#M210679</link>
      <description>&lt;P&gt;I add time picker input with token timepicker but i have an error&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;" Error in 'where' command: The expression is malformed. Expected )."&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20555iDCE74707845A7A31/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 18:27:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605838#M210679</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-15T18:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605843#M210680</link>
      <description>&lt;P&gt;You are looking at it in edit mode - tokens are resolved in edit mode - you need to save it to see whether the tokens are set up correctly&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 20:04:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605843#M210680</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-15T20:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Time Range Report not considerated with input lookup</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605855#M210682</link>
      <description>&lt;P&gt;Sorry i don't understand i have error with where in normal mode too&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20558i3B26D5362FC7A506/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;&amp;lt;form theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;bb-test&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input type="time" token="timepicker"&amp;gt;
      &amp;lt;label&amp;gt;Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-7d@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;TEST&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| file1.csv
| rename count as "file1"
| append
    [| inputlookup file2.csv |
     rename count as "file2" ]
| append
    [| inputlookup file3.csv
    |  rename count as "file3" ]
| append
    [| inputlookup file4.csv
    |  rename count as "file4" ]
| append
    [| inputlookup file5.csv | dedup _time 
    |  rename count as "file5" ]
| append
    [| inputlookup file6.csv
    |  rename count as "file6" ]
| where _time &amp;amp;gt;= relative_time(now(), $timepicker.earliest$) AND _time &amp;amp;lt; relative_time(now(), $timepicker.latest$)
| stats values(*) as * by _time
| addtotals col=t row=f label=Total labelfield=_time&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jul 2022 13:55:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/605855#M210682</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-07-16T13:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Time Range Report not considerate with input lookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/610468#M212307</link>
      <description>&lt;P&gt;Hello i search the solution but it doesnt work any help&lt;BR /&gt;I have "error in 'where' comance the expression is malformed. Expcected )"&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;bb3&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;test&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| inputlookup file1.csv
| rename count as "file1"
| append
    [| inputlookup file2.csv |
     rename count as "file2" ]
| append
    [| inputlookup file3.csv
    |  rename count as "file3" ]
| append
    [| inputlookup file4.csv
    |  rename count as "afile4" ]
| append
    [| inputlookup file5.csv | dedup _time 
    |  rename count as "file5" ]
| append
    [| inputlookup file6.csv
    |  rename count as "file6" ]
| where _time &amp;amp;gt;= relative_time(now(), $field1.earliest$) AND _time &amp;amp;lt; relative_time(now(), $field1.latest$)
| stats values(*) as * by _time
| addtotals col=t row=f label=Total labelfield=_timee&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$field1.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$field1.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 10:11:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-Time-Range-Report-not-considerate-with-input-lookup/m-p/610468#M212307</guid>
      <dc:creator>brad_</dc:creator>
      <dc:date>2022-08-23T10:11:56Z</dc:date>
    </item>
  </channel>
</rss>

