<?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 is the &amp;quot;condition value&amp;quot; in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219008#M13589</link>
    <description>&lt;P&gt;Take out &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 13 Nov 2016 20:36:32 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2016-11-13T20:36:32Z</dc:date>
    <item>
      <title>Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219007#M13588</link>
      <description>&lt;P&gt;The below used to work in previous version of SPLUNK before 6.5.&lt;BR /&gt;
It is a drop-down that gets populated from a lookup.&lt;BR /&gt;
I want to check if the user picks "Add new project" , however, now it is automatically picking it without the user interacting.&lt;/P&gt;

&lt;P&gt;Has something changed in SPLUNK 6.5, as this has been working for multiple versions us to now?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;label&amp;gt;Select which project this applies to&amp;lt;/label&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;!-- Get a list of existing projects, plus two static values at the end: "Add new project", and "Remove from project" --&amp;gt;
      &amp;lt;query&amp;gt;| makeresults annotate=false count=1 | eval log_drop_name="$host_token$" | lookup PROJECT_GROUPINGS.csv log_drop_name OUTPUTNEW project | eval project = if(isnull(project),"",project) | inputlookup append=true PROJECT_GROUPINGS.csv | append [ | makeresults annotate=false count=1 | eval project="Remove from project" ] | append [ | makeresults annotate=false count=1 | eval project="Add new project" ] | table project | dedup project | head $projects_refresher$&amp;lt;/query&amp;gt;
    &amp;lt;/search&amp;gt;
    &amp;lt;fieldForLabel&amp;gt;project&amp;lt;/fieldForLabel&amp;gt;
    &amp;lt;fieldForValue&amp;gt;project&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
    &amp;lt;change&amp;gt;
      &amp;lt;condition value="Add new project"&amp;gt;
        &amp;lt;set token="new_project_input"&amp;gt;true&amp;lt;/set&amp;gt;

        &amp;lt;unset token="form.new_project_input_text"&amp;gt;&amp;lt;/unset&amp;gt;

        &amp;lt;unset token="known_issues_project"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="execute_add_known_issue"&amp;gt;&amp;lt;/unset&amp;gt;

        &amp;lt;unset token="execute_add_all_issues"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/condition&amp;gt;
      &amp;lt;condition match="NOT value = 'Add new project'"&amp;gt;
        &amp;lt;unset token="new_project_input"&amp;gt;&amp;lt;/unset&amp;gt;

        &amp;lt;eval token="known_issues_project"&amp;gt;if('value'="",null,'value')&amp;lt;/eval&amp;gt;

        &amp;lt;unset token="execute_add_known_issue"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="execute_add_all_issues"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/condition&amp;gt;
    &amp;lt;/change&amp;gt;
  &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The query results are the following&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults annotate=false count=1 | eval log_drop_name="$host_token$" | lookup PROJECT_GROUPINGS.csv log_drop_name OUTPUTNEW project | eval project = if(isnull(project),"",project) | inputlookup append=true PROJECT_GROUPINGS.csv | append [ | makeresults annotate=false count=1 | eval project="Remove from project" ] | append [ | makeresults annotate=false count=1 | eval project="Add new project" ] | table project | dedup project | head $projects_refresher$

NPC
Scotia-Errors
Add new project
Remove from project
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;SO "Add new project" is in the query, however, I need the end user to pick it before it drives other tokens.&lt;/P&gt;

&lt;P&gt;All help is great as i have tried a few things...&lt;/P&gt;</description>
      <pubDate>Sun, 13 Nov 2016 16:02:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219007#M13588</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2016-11-13T16:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219008#M13589</link>
      <description>&lt;P&gt;Take out &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 13 Nov 2016 20:36:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219008#M13589</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2016-11-13T20:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219009#M13590</link>
      <description>&lt;P&gt;Or change it to "false" to make it explicit&lt;/P&gt;</description>
      <pubDate>Sun, 13 Nov 2016 21:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219009#M13590</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2016-11-13T21:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219010#M13591</link>
      <description>&lt;P&gt;Sorry but this does not work.&lt;/P&gt;

&lt;P&gt;"new_project_input" is been set to true!&lt;/P&gt;

&lt;P&gt;For some reason in the new SPLUNK 6.5 the value is set as "Add new Project", even do nothing has been picked? This worked in other version, so i am thinking of reporting it as a bug.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;change&amp;gt;
      &amp;lt;condition value="Add new project"&amp;gt;
        &amp;lt;set token="new_project_input"&amp;gt;true&amp;lt;/set&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:45:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219010#M13591</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-09-29T11:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219011#M13592</link>
      <description>&lt;P&gt;If you create a run-anywhere example (using &lt;CODE&gt;index=_*&lt;/CODE&gt;, getting rid of &lt;CODE&gt;lookup&lt;/CODE&gt; and &lt;CODE&gt;inputlookup&lt;/CODE&gt;, etc.), and post a complete XML, then I (and probably others) will try to help.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2017 22:11:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219011#M13592</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-03-30T22:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219012#M13593</link>
      <description>&lt;P&gt;Have you tried something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;condition match="value != &amp;amp;quot;Add new project&amp;amp;quot;"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Mar 2017 22:55:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219012#M13593</guid>
      <dc:creator>nfilippi_splunk</dc:creator>
      <dc:date>2017-03-30T22:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219013#M13594</link>
      <description>&lt;P&gt;Hi - Just getting to this NOW. Looks like this is it. Thanks very much&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:05:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219013#M13594</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T15:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219014#M13595</link>
      <description>&lt;P&gt;This worked in the end - Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;condition match="value != &amp;amp;quot;Add new project&amp;amp;quot;"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I have no idea why my Orginal code stopped working, but this is doing the trick. Cheers &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:05:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219014#M13595</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T15:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219015#M13596</link>
      <description>&lt;P&gt;@robertlynch2020... Please upvote @nfilippi comment since his suggested code is what worked for you. Ideally you should have accepted his comment as answer!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:16:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219015#M13596</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-21T15:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219016#M13597</link>
      <description>&lt;P&gt;I was trying to accept his comment, but i cant as its a commend on an answer.&lt;BR /&gt;
SO i will upvote no worries, but how do i accept his answer ?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:19:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219016#M13597</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T15:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219017#M13598</link>
      <description>&lt;P&gt;Unless he re-posts as an answer then i will accept perhaps ?&lt;BR /&gt;
Im easy, he saved me a lot of work so i defo want to say thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:20:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219017#M13598</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T15:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219018#M13599</link>
      <description>&lt;P&gt;for some reason i cant do more - &amp;gt; convert to answer!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 15:23:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219018#M13599</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T15:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219019#M13600</link>
      <description>&lt;P&gt;Sorry @robertlynch2020 , you have accepted wrong answer. Please unaccept this and accept nfilippi's Answer.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 16:48:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219019#M13600</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-21T16:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219020#M13601</link>
      <description>&lt;P&gt;Hi - I have done this now: FYI this option was not available to be 30 minutes ago. His answer has been moved into an answer and not a comment off an answer.&lt;/P&gt;

&lt;P&gt;But its all fixed now, so cheers for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 16:55:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219020#M13601</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2017-04-21T16:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219021#M13602</link>
      <description>&lt;P&gt;hi am also searching for this type of problem please help for this .my question links are::&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html"&gt;https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html"&gt;https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 08:00:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219021#M13602</guid>
      <dc:creator>harishalipaka</dc:creator>
      <dc:date>2017-11-30T08:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219022#M13603</link>
      <description>&lt;P&gt;hi am also searching for this type of problem please help for this .my question links are::&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html"&gt;https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html"&gt;https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 08:02:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219022#M13603</guid>
      <dc:creator>harishalipaka</dc:creator>
      <dc:date>2017-11-30T08:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the "condition value" in the XML of my dashboard no longer working as expected after upgrading Splunk to 6.5.0?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219023#M13604</link>
      <description>&lt;P&gt;hi am also searching for this type of problem please help for this .my question links are::&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html"&gt;https://answers.splunk.com/answers/592116/related-to-tokens-in-multiselect.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html"&gt;https://answers.splunk.com/answers/593597/developing-a-splunk-app-and-it-doesnt-work-on-mobi.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 08:02:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-quot-condition-value-quot-in-the-XML-of-my-dashboard/m-p/219023#M13604</guid>
      <dc:creator>harishalipaka</dc:creator>
      <dc:date>2017-11-30T08:02:29Z</dc:date>
    </item>
  </channel>
</rss>

