<?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 do you make a date and time comparison in field values based on a condition? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411202#M118635</link>
    <description>&lt;P&gt;hi @vikas_baranwal &lt;/P&gt;

&lt;P&gt;am not clear what do you want.can you explain properly.&lt;/P&gt;

&lt;P&gt;try like this &lt;CODE&gt;|where key="CORE-36256" and status="In Dev" |stats latest(update_final) as second_time&lt;/CODE&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Nov 2018 08:02:12 GMT</pubDate>
    <dc:creator>harishalipaka</dc:creator>
    <dc:date>2018-11-26T08:02:12Z</dc:date>
    <item>
      <title>How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411201#M118634</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;

&lt;P&gt;I need your help in date\time comparison in table field itself.&lt;/P&gt;

&lt;P&gt;Lets suppose, any key value goes into status as  "In QA"  after completing Status as "In Dev" with some date\time and then again due to some issues which will be identified later on, same key value status changed again into 'In QA" Status.&lt;/P&gt;

&lt;P&gt;I am looking for the date\time when Status changed into "In Dev" for the second time.&lt;/P&gt;

&lt;P&gt;I have attached a screenshot on the below URL.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://ibb.co/BPnrqXL"&gt;https://ibb.co/BPnrqXL&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Thank you all for any help in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 07:26:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411201#M118634</guid>
      <dc:creator>vikas_baranwal</dc:creator>
      <dc:date>2018-11-26T07:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411202#M118635</link>
      <description>&lt;P&gt;hi @vikas_baranwal &lt;/P&gt;

&lt;P&gt;am not clear what do you want.can you explain properly.&lt;/P&gt;

&lt;P&gt;try like this &lt;CODE&gt;|where key="CORE-36256" and status="In Dev" |stats latest(update_final) as second_time&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 08:02:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411202#M118635</guid>
      <dc:creator>harishalipaka</dc:creator>
      <dc:date>2018-11-26T08:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411203#M118636</link>
      <description>&lt;P&gt;Hi Hari,&lt;/P&gt;

&lt;P&gt;In screenshot, If you can which I have highlighted in yellow and red.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://ibb.co/rdvQXvy"&gt;https://ibb.co/rdvQXvy&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Normally process is for any key value status change is&lt;/P&gt;

&lt;P&gt;"Ready for Dev" ---&amp;gt; "In Dev" ---&amp;gt; "In QA' ---&amp;gt; Done&lt;/P&gt;

&lt;P&gt;But when any issue find out in "In QA" status then again key status roll-back into "In Dev" and complete cycle again.&lt;/P&gt;

&lt;P&gt;Ready for Dev ---&amp;gt; In Dev ---&amp;gt; In QA ---&amp;gt; Ready for Dev ---&amp;gt; In Dev ---&amp;gt; In QA ---&amp;gt; Done&lt;/P&gt;

&lt;P&gt;I am here looking for date\time when status changes  into "In Dev" status 2nd time.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 08:17:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411203#M118636</guid>
      <dc:creator>vikas_baranwal</dc:creator>
      <dc:date>2018-11-26T08:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411204#M118637</link>
      <description>&lt;P&gt;Are you just trying to find all tickets where it's not their first time being "In Dev"? If so, I think you could use a combination of &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| stats EARLIEST(update_final) AS earliest_update_final, LATEST(update_final) AS latest_update_final BY key  &lt;BR /&gt;
| search earliest_update_final != latest_update_final&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 14:19:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411204#M118637</guid>
      <dc:creator>joshualarkins</dc:creator>
      <dc:date>2018-11-26T14:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411205#M118638</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I am looking for the date\time when any key value status changed 2nd time in "In Dev" status which is "11-07-2018 09:09:56" in the screenshot.&lt;/P&gt;

&lt;P&gt;It is required to show metric as how many keys was failed when then crossed "In Dev" status and when status was changed from "In Dev" to 'In QA" and done testing again and it got failed. Now again status moved to "In Dev " status from "In QA" status.&lt;/P&gt;

&lt;P&gt;Thank you for your help on this.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 06:47:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411205#M118638</guid>
      <dc:creator>vikas_baranwal</dc:creator>
      <dc:date>2018-11-27T06:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411206#M118639</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;

&lt;P&gt;Please help me with the solution. If explanation is not much clear then I can try more.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 08:38:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411206#M118639</guid>
      <dc:creator>vikas_baranwal</dc:creator>
      <dc:date>2018-11-30T08:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a date and time comparison in field values based on a condition?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411207#M118640</link>
      <description>&lt;P&gt;Hi Everyone, Please advise on this request.&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 10:31:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-date-and-time-comparison-in-field-values-based/m-p/411207#M118640</guid>
      <dc:creator>vikas_baranwal</dc:creator>
      <dc:date>2018-12-03T10:31:40Z</dc:date>
    </item>
  </channel>
</rss>

