<?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: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258614#M16261</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Thank  you for your response,&lt;/P&gt;

&lt;P&gt;$FIELD$ ; its not actually a token; to calculate the grand total I used that with 'foreach' command&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Mon, 30 Nov 2015 18:55:23 GMT</pubDate>
    <dc:creator>Laya123</dc:creator>
    <dc:date>2015-11-30T18:55:23Z</dc:date>
    <item>
      <title>Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258612#M16259</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am creating a dashboard using a CSV file (inputlookup xxxx.csv). I have created 3 reports in a dashboard and the first 2 reports I am getting data, but the 3rd report I am not getting any values and it is showing &lt;STRONG&gt;'Search is waiting for input'&lt;/STRONG&gt;. Bbelow is my XML code. Here I am not using any time frame because I am using a CSV as the input and in that file, I have a date field. From this date field, I am extracting Day and for 2 drop-down boxes for Fromdate and Todate. This Fromdate and Todate is working only for first 2 reports, but not for 3rd report. I tried different things, but no luck.&lt;/P&gt;

&lt;P&gt;Example: If I want a report for the 5th to 10th, I will select 5 from the first drop-down and 10 is from the second drop-down. Based on these selections, my report is giving results for for those 5 days (5th to 10th), but only for the first 2 reports, but the 3rd report is showing &lt;STRONG&gt;'Search is waiting for input'&lt;/STRONG&gt;.&lt;/P&gt;

&lt;P&gt;below is the query which I used. can any one help me to do this &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Sample&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;Sample&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="false"&amp;gt;
    &amp;lt;input type="dropdown" token="StartDay1" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;From&amp;lt;/label&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|stats dc(Start_Day) by Start_Day&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;Start_Day&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;Start_Day&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="StartDay2" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;To&amp;lt;/label&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|stats dc(Start_Day) by Start_Day&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;Start_Day&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;Start_Day&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input type="multiselect" token="AAType" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Activation Type&amp;lt;/label&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |stats count by AAtype&amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;fieldForLabel&amp;gt;AType&amp;lt;/fieldForLabel&amp;gt;
        &amp;lt;fieldForValue&amp;gt;AAtype&amp;lt;/fieldForValue&amp;gt;
        &amp;lt;default&amp;gt;Publish&amp;lt;/default&amp;gt;
        &amp;lt;prefix&amp;gt;(&amp;lt;/prefix&amp;gt;
        &amp;lt;valuePrefix&amp;gt;AAtype ="&amp;lt;/valuePrefix&amp;gt;
        &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
        &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
        &amp;lt;suffix&amp;gt;)&amp;lt;/suffix&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="multiselect" token="Status1" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Status&amp;lt;/label&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;|inputlookup _AADaily.csv|stats count by Status&amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;fieldForLabel&amp;gt;Status&amp;lt;/fieldForLabel&amp;gt;
        &amp;lt;fieldForValue&amp;gt;Status&amp;lt;/fieldForValue&amp;gt;
        &amp;lt;default&amp;gt;Published&amp;lt;/default&amp;gt;
        &amp;lt;prefix&amp;gt;(&amp;lt;/prefix&amp;gt;
        &amp;lt;valuePrefix&amp;gt;Status ="&amp;lt;/valuePrefix&amp;gt;
        &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
        &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
        &amp;lt;suffix&amp;gt;)&amp;lt;/suffix&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;title&amp;gt;Averagetime&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$ |where ($AAType$) AND ($Status1$) |chart avg(Total_TimeSec) AS "Avg_Total_ActivationTime" over ServerName by AAtype&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;0&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;-90&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.enabled"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Averagetime_Statiscs&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$ |where ($AAType$) AND ($Status1$) |chart avg(Total_TimeSec) AS "Avg_Total_ActivationTime" over ServerName by AAtype&amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&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;cell&amp;lt;/option&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Verification&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$|where Cluster="N" OR Cluster!="ST" |eval app_status = Cluster . ":" . Status | chart count over host by app_status| appendcols [ |inputlookup _AADaily.csv |where Cluster="S" OR Cluster!="ST" | eval app_status = Cluster . ":" . Status | chart count over host by app_status] |addtotals fieldname=N_Total N*|addtotals fieldname=S_Total S*| eval Grand_Total=0 | foreach *Total [ eval Grand_Total = Grand_Total + $&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;$ ] | addcoltotals labelfield=host label=Total|table host N:* N_Total S:* S_Total Grand_Total&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 17:13:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258612#M16259</guid>
      <dc:creator>Laya123</dc:creator>
      <dc:date>2015-11-30T17:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258613#M16260</link>
      <description>&lt;P&gt;Where you mentioned  the value of  "$FIELD$"  on third query..?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 18:08:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258613#M16260</guid>
      <dc:creator>vranjith009</dc:creator>
      <dc:date>2015-11-30T18:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258614#M16261</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Thank  you for your response,&lt;/P&gt;

&lt;P&gt;$FIELD$ ; its not actually a token; to calculate the grand total I used that with 'foreach' command&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 18:55:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258614#M16261</guid>
      <dc:creator>Laya123</dc:creator>
      <dc:date>2015-11-30T18:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258615#M16262</link>
      <description>&lt;P&gt;try using &lt;CODE&gt;&amp;amp;#36;&lt;/CODE&gt; instead of &lt;CODE&gt;$&lt;/CODE&gt; around the &lt;CODE&gt;$FIELD$&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:26:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258615#M16262</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-11-30T19:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258616#M16263</link>
      <description>&lt;P&gt;Hi, can you explain me how &amp;amp; # 36 ; will work&lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:37:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258616#M16263</guid>
      <dc:creator>Laya123</dc:creator>
      <dc:date>2015-11-30T19:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258617#M16264</link>
      <description>&lt;P&gt;it's the HTML special character code to replace the $. Right now though it thinks your &lt;CODE&gt;$FIELD$&lt;/CODE&gt; is an input it needs to wait for. By using &lt;CODE&gt;&amp;amp;#36;&lt;/CODE&gt; you force the parsing to occur before it identifies it as an input.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:42:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258617#M16264</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-11-30T19:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258618#M16265</link>
      <description>&lt;P&gt;Hi Laya123, as the comments have suggested, I expect that the dashboard doesn't like the search string. Try wrapping the whole search string in  to escape it&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;query&amp;gt;&amp;lt;![CDATA[|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$ |where ($AAType$) AND ($Status1$) |chart avg(Total_TimeSec) AS "Avg_Total_ActivationTime" over ServerName by AAtype]]&amp;gt;&amp;lt;/query&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please let me know if this helps. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 20:49:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258618#M16265</guid>
      <dc:creator>muebel</dc:creator>
      <dc:date>2015-11-30T20:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258619#M16266</link>
      <description>&lt;P&gt;Thank you for your response;  but I have problem with my 3rd report. first 2 reports are giving results when I have selected the days from dropdown, 3rd report only showing &lt;STRONG&gt;'Search is waiting for input'&lt;/STRONG&gt; but not giving any records.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 03:13:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258619#M16266</guid>
      <dc:creator>Laya123</dc:creator>
      <dc:date>2015-12-01T03:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258620#M16267</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I didnt understand where to use and how to use &amp;amp; # 36 ;  &lt;/P&gt;

&lt;P&gt;But thank you so much now I understand where the issue is and I changed my 3rd query little bit. removed foreach command.&lt;/P&gt;

&lt;P&gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$|where Cluster="N" OR Cluster!="ST" |eval app_status = Cluster . ":" . Status | chart count over host by app_status| appendcols [ |inputlookup _AADaily.csv |where Cluster="S" OR Cluster!="ST" | eval app_status = Cluster . ":" . Status | chart count over host by app_status] |addtotals fieldname=N_Total N*|addtotals fieldname=S_Total S*| addtotals fieldname=Grand_Total &lt;EM&gt;Total&lt;/EM&gt;| addcoltotals labelfield=host label=Total|table host N:* N_Total S:* S_Total Grand_Total&lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:03:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258620#M16267</guid>
      <dc:creator>Laya123</dc:creator>
      <dc:date>2020-09-29T08:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I getting 'Search is waiting for input' for one of 3 reports on my dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258621#M16268</link>
      <description>&lt;P&gt;The problem is this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;$
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;which should be this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$$&amp;lt;FIELD&amp;gt;$$
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So change this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$|where Cluster="N" OR Cluster!="ST" |eval app_status = Cluster . ":" . Status | chart count over host by app_status| appendcols [ |inputlookup _AADaily.csv |where Cluster="S" OR Cluster!="ST" | eval app_status = Cluster . ":" . Status | chart count over host by app_status] |addtotals fieldname=N_Total N*|addtotals fieldname=S_Total S*| eval Grand_Total=0 | foreach *Total [ eval Grand_Total = Grand_Total + $$&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;$$ ] | addcoltotals labelfield=host label=Total|table host N:* N_Total S:* S_Total Grand_Total&amp;lt;/query&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;query&amp;gt;|inputlookup _AADaily.csv |eval _time=strptime(Starttime,"%m/%d/%Y %H:%M:%S.%3N")|eval Start_Day = strftime(_time,"%d")|where Start_Day&amp;gt;=$StartDay1$ AND Start_Day&amp;lt;=$StartDay2$|where Cluster="N" OR Cluster!="ST" |eval app_status = Cluster . ":" . Status | chart count over host by app_status| appendcols [ |inputlookup _AADaily.csv |where Cluster="S" OR Cluster!="ST" | eval app_status = Cluster . ":" . Status | chart count over host by app_status] |addtotals fieldname=N_Total N*|addtotals fieldname=S_Total S*| eval Grand_Total=0 | foreach *Total [ eval Grand_Total = Grand_Total + $&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;$ ] | addcoltotals labelfield=host label=Total|table host N:* N_Total S:* S_Total Grand_Total&amp;lt;/query&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Dec 2015 14:21:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-am-I-getting-Search-is-waiting-for-input-for-one-of-3/m-p/258621#M16268</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-12-01T14:21:30Z</dc:date>
    </item>
  </channel>
</rss>

