<?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 get last field value by time range picker in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529992#M149723</link>
    <description>&lt;P&gt;Thanks so much I've used this code to limit the Close date by making a wide range in time range picker. Appreciate your time.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2020 18:52:53 GMT</pubDate>
    <dc:creator>xyz123</dc:creator>
    <dc:date>2020-11-18T18:52:53Z</dc:date>
    <item>
      <title>how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529433#M149524</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;What I want to get&amp;nbsp; a table with all fields populated with their last values by time range.&lt;BR /&gt;&lt;BR /&gt;For each form I have a field called Created also the field Product that can be filled later or can be left empty. I want to calculate with form has a product value or are empty to get a total percentage.&lt;BR /&gt;&lt;BR /&gt;For a time range let's say Created date goes from Nov 1 to Nov 7 the field Product shows empty,&amp;nbsp;&lt;STRONG&gt; but if I add more day at time range&lt;/STRONG&gt;&amp;nbsp;like going ahead it gets populated properly, how can I get this last value when taking in count that I just want results within time range&amp;nbsp; Nov1-7 (time range picker), here what I have until now:&lt;/P&gt;&lt;LI-SPOILER&gt;index=main&lt;BR /&gt;&lt;BR /&gt;| eval _time=strptime(Created,"%Y-%m-%d %H:%M:%S")&lt;BR /&gt;&lt;BR /&gt;| addinfo&lt;BR /&gt;| where ((_time &amp;gt;= info_min_time) AND (_time=="+Infinity" OR _time&amp;lt;=info_max_time))&lt;BR /&gt;&lt;BR /&gt;| stats latest(Created) as Created latest(Product) as Product values(Delivered) as Delivered last(Updated) as Updated by Code&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp; Code Created Product Delivered Updated&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="40px" height="22px"&gt;1&lt;/TD&gt;&lt;TD width="70px" height="22px"&gt;A89580&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-02 15:56:20&lt;/TD&gt;&lt;TD width="53.75px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="61.25px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-02 20:47:20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="40px" height="22px"&gt;2&lt;/TD&gt;&lt;TD width="70px" height="22px"&gt;A23780&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-03 21:18:37&lt;/TD&gt;&lt;TD width="53.75px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="61.25px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-04 19:08:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="40px" height="22px"&gt;3&lt;/TD&gt;&lt;TD width="70px" height="22px"&gt;A23826&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-03 21:20:58&lt;/TD&gt;&lt;TD width="53.75px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="61.25px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-06 21:21:35&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="40px" height="22px"&gt;4&lt;/TD&gt;&lt;TD width="70px" height="22px"&gt;A23900&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-03 21:25:05&lt;/TD&gt;&lt;TD width="53.75px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="61.25px" height="22px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="167.5px" height="22px"&gt;2020-11-06 21:25:19&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;If I extend the time range: shows all values for Product and Delivered date&lt;BR /&gt;I modified last(Update) for values(Update) I can see all the time range for each Code.&lt;BR /&gt;Just to clarify Product and Delivered fields are independent one of another; after is Delivered, Product can be filled or left empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Code Created Product Delivered Updated&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;A89580&lt;/TD&gt;&lt;TD&gt;2020-11-02 15:56:20&lt;/TD&gt;&lt;TD&gt;PPA89580&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-13 19:39:01&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-02 15:56:24&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-02 19:21:34&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-02 20:47:20&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-10 13:13:06&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-13 19:39:01&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-14 20:01:49&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;A23780&lt;/TD&gt;&lt;TD&gt;2020-11-03 21:18:37&lt;/TD&gt;&lt;TD&gt;PPA23780&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-10 02:22:47&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-03 21:18:51&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-04 19:08:12&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-07 19:08:18&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-10 02:19:48&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-10 02:22:47&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-11 03:00:36&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;A23826&lt;/TD&gt;&lt;TD&gt;2020-11-03 21:20:58&lt;/TD&gt;&lt;TD&gt;PPA23826&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-12 20:34:07&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-03 21:20:58&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-03 21:21:28&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-06 21:21:35&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-09 21:21:37&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-12 17:56:48&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-12 17:58:36&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-12 20:34:07&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-13 21:01:04&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;A23900&lt;/TD&gt;&lt;TD&gt;2020-11-03 21:25:05&lt;/TD&gt;&lt;TD&gt;PPA23900&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-09 21:43:31&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-03 21:25:15&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-06 21:25:19&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-09 13:07:25&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-09 13:09:33&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-09 21:43:31&lt;/DIV&gt;&lt;DIV class="multivalue-subcell"&gt;2020-11-10 22:03:09&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;Assistance with this will greatly be appreciated. Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2020 04:00:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529433#M149524</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-15T04:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529451#M149530</link>
      <description>&lt;P&gt;Just to clarify, you have two time ranges? One for all the events since a point in time, and one for the create time being within a smaller time period? Is the time period for the create time always the same e.g. start time + 7days?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2020 11:46:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529451#M149530</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-15T11:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529453#M149531</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thanks for your question, I have a date field called&amp;nbsp;&lt;STRONG&gt;Create &lt;/STRONG&gt;I make Splunk time range picker &lt;STRONG&gt;_time&amp;nbsp;&lt;/STRONG&gt;to be the same as this date so it will bring all the events within that range.&lt;/P&gt;&lt;P&gt;In this example I took from Nov1-7&lt;/P&gt;&lt;P&gt;The issue is that others fields, like &lt;STRONG&gt;Delivered&lt;/STRONG&gt; and &lt;STRONG&gt;Product&lt;/STRONG&gt;&amp;nbsp;get updated -after- that time range example in Nov 9, that's why I can see them empty for that time range.&lt;/P&gt;&lt;P&gt;I would like to show the final results with all populated.&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xyz123&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2020 12:27:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529453#M149531</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-15T12:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529454#M149532</link>
      <description>&lt;P&gt;It sounds like the way you are using timepicker is limiting the events that are retrieved, e.g. you are only getting events between Nov 1 and Nov 7, this is why you aren't getting the updates after Nov 7. You need to set the time range of the search (with time picker?) to be Nov 1 until now i.e. since Nov 1. You then need a way to limit the created dates. Or you need to use timepicker to just set the earliest time for the search and set latest to now. and then use the timepicker to limit your created time.&lt;/P&gt;&lt;P&gt;Are you setting up a dashboard for this? If so, can you share the SimpleXML you have for it?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2020 12:50:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529454#M149532</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-15T12:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529455#M149533</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thanks for your reply, no dashboard for now, I'm tying to get the proper data first.&lt;/P&gt;&lt;P&gt;The client's asking for the products list when Created date is within a time range.&lt;/P&gt;&lt;P&gt;But I'm getting this products empty since time range is truncated by this time range.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another way to show all this data using Created date?&lt;/P&gt;&lt;P&gt;I was thinking about transactions but again the last event is not captured.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Xyz123&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2020 13:26:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529455#M149533</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-15T13:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529456#M149534</link>
      <description>&lt;P&gt;Set the time picker for the query to be since Nov 1&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=main
| eval Created=strptime(Created,"%Y-%m-%d %H:%M:%S")
| stats latest(Created) as Created latest(Product) as Product values(Delivered) as Delivered last(Updated) as Updated by Code
| where Created &amp;lt; strptime("2020-11-08","%Y-%m-%d")&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 15 Nov 2020 13:53:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529456#M149534</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-15T13:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529517#M149554</link>
      <description>&lt;P&gt;Hello, unfortunately it didn't work it still gets truncated, again if&amp;nbsp; I put the time range from Nov1-7 to Nov1-14 I get all the values. Here the code again.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=main
| eval _time=strptime(Created,"%Y-%m-%d %H:%M:%S")

| addinfo
| where ((_time &amp;gt;= info_min_time) AND (_time=="+Infinity" OR _time&amp;lt;=info_max_time))

| stats latest(Created) as Created latest(Product) as Product values(Delivered) as Delivered last(Updated) as Updated by Code&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 16 Nov 2020 11:11:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529517#M149554</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-16T11:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529521#M149556</link>
      <description>&lt;P&gt;Setting the time range to Nov 1-7 only processes events in that time range, that is why the later updates are missing. It doesn't matter that you change the value of _time to be the time in the Created field, it is already too late to change which events are processed. By changing the time range to Nov 1-14 you include the other events but you also pick up events created in the time period to. This is why in my version I limited the rows on whether the created date was before Nov 8.&lt;/P&gt;&lt;P&gt;Fundamentally, the issue is that you need 3 points in time (Earliest event, Latest event, and latest created) but timepicker only allows you to select 2 of these. To get the data you want, timepicker should frame all the events you want to take into consideration i.e. anything after Nov 1 or Nov 1-14. You then need a where clause to select only the events with Created dates in the period you are interested in.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=main
| eval Created=strptime(Created,"%Y-%m-%d %H:%M:%S")
| stats latest(Created) as Created latest(Product) as Product values(Delivered) as Delivered last(Updated) as Updated by Code
| where Created &amp;lt; strptime("2020-11-08","%Y-%m-%d")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 12:16:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529521#M149556</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-16T12:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529533#M149562</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;thanks for your reply, If I understand what you mean it's to set time range picker for 'All Time' then set the date (Created) range manually like using token for example?&lt;BR /&gt;It sounds like there's not another way to do this automatically?&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Xyz123&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 13:14:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529533#M149562</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-16T13:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529539#M149563</link>
      <description>&lt;P&gt;You don't need to use "All time", use date range - since&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1605534732959.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/11910i4407C303464DCC93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1605534732959.png" alt="ITWhisperer_0-1605534732959.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then use the where clause to limit the results to everything before Nov 8.&lt;/P&gt;&lt;P&gt;If you want to automate it to some degree, you could use earliest from addinfo and add 7 days for example.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 13:55:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529539#M149563</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-16T13:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529892#M149693</link>
      <description>&lt;P&gt;Hi, could you kindly add the code for the earliest option? Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 11:53:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529892#M149693</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-18T11:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529989#M149721</link>
      <description>&lt;LI-CODE lang="markup"&gt;| addinfo
| where _time &amp;lt;= info_min_time+(7*24*60*60)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Nov 2020 18:45:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529989#M149721</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-11-18T18:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to get last field value by time range picker</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529992#M149723</link>
      <description>&lt;P&gt;Thanks so much I've used this code to limit the Close date by making a wide range in time range picker. Appreciate your time.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 18:52:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-last-field-value-by-time-range-picker/m-p/529992#M149723</guid>
      <dc:creator>xyz123</dc:creator>
      <dc:date>2020-11-18T18:52:53Z</dc:date>
    </item>
  </channel>
</rss>

