<?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 count or assign or tell the &amp;quot;nth&amp;quot; attempt of an event in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550098#M37966</link>
    <description>&lt;P&gt;Ok thanks so much for this... I didn't know about streamstats is that the command for whenever we wanna know the nth position solely? I thought we only had stats thank you so much&lt;/P&gt;</description>
    <pubDate>Sat, 01 May 2021 02:39:56 GMT</pubDate>
    <dc:creator>andres91302</dc:creator>
    <dc:date>2021-05-01T02:39:56Z</dc:date>
    <item>
      <title>How to count or assign the number of event</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550034#M37957</link>
      <description>&lt;P&gt;I have a dataset that shows the logins by date and unique_session_code for each user that visits the webpage of a bakery. I am trying to come a code that allows me to&amp;nbsp; determine if this is the first, second, third and so on... visit of this customer in other words the "nth_visit"&lt;/P&gt;&lt;TABLE width="247"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="80"&gt;USER&lt;/TD&gt;&lt;TD width="87"&gt;LOG_DATE&lt;/TD&gt;&lt;TD width="80"&gt;TX_REV&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ALEX&lt;/TD&gt;&lt;TD&gt;30/04/2021&lt;/TD&gt;&lt;TD&gt;uyjd&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MARY&lt;/TD&gt;&lt;TD&gt;30/04/2021&lt;/TD&gt;&lt;TD&gt;dn89&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;30/04/2021&lt;/TD&gt;&lt;TD&gt;nqmd0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FRANK&lt;/TD&gt;&lt;TD&gt;29/04/2021&lt;/TD&gt;&lt;TD&gt;nsj456&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MARY&lt;/TD&gt;&lt;TD&gt;29/04/2021&lt;/TD&gt;&lt;TD&gt;zlpa2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;29/04/2021&lt;/TD&gt;&lt;TD&gt;s09dm&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ALEX&lt;/TD&gt;&lt;TD&gt;28/04/2021&lt;/TD&gt;&lt;TD&gt;jds02&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MARY&lt;/TD&gt;&lt;TD&gt;28/04/2021&lt;/TD&gt;&lt;TD&gt;kqos98&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;28/04/2021&lt;/TD&gt;&lt;TD&gt;uiskk0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;|This would be my desired result:&lt;/P&gt;&lt;TABLE border="0" width="320" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="80" height="20"&gt;USER&lt;/TD&gt;&lt;TD width="80"&gt;LOG_DATE&lt;/TD&gt;&lt;TD width="80"&gt;TX_REV&lt;/TD&gt;&lt;TD width="80"&gt;nth_visit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;ALEX&lt;/TD&gt;&lt;TD&gt;44314&lt;/TD&gt;&lt;TD&gt;jds02&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;ALEX&lt;/TD&gt;&lt;TD&gt;44316&lt;/TD&gt;&lt;TD&gt;uyjd&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;44314&lt;/TD&gt;&lt;TD&gt;uiskk0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;44315&lt;/TD&gt;&lt;TD&gt;s09dm&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;DOLLY&lt;/TD&gt;&lt;TD&gt;44316&lt;/TD&gt;&lt;TD&gt;nqmd0&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;FRANK&lt;/TD&gt;&lt;TD&gt;44315&lt;/TD&gt;&lt;TD&gt;nsj456&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;MARY&lt;/TD&gt;&lt;TD&gt;44314&lt;/TD&gt;&lt;TD&gt;kqos98&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;MARY&lt;/TD&gt;&lt;TD&gt;44315&lt;/TD&gt;&lt;TD&gt;zlpa2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;MARY&lt;/TD&gt;&lt;TD&gt;44316&lt;/TD&gt;&lt;TD&gt;dn89&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;A&amp;nbsp; table has the "nth_visit" to the website by each attempt of the visitor&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you so much guys&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 May 2021 19:58:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550034#M37957</guid>
      <dc:creator>andres91302</dc:creator>
      <dc:date>2021-05-02T19:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to count or assign or tell the "nth" attempt of an event</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550038#M37959</link>
      <description>&lt;LI-CODE lang="markup"&gt;| streamstats count as nth_visit by USER&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 30 Apr 2021 16:38:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550038#M37959</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-30T16:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to count or assign or tell the "nth" attempt of an event</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550098#M37966</link>
      <description>&lt;P&gt;Ok thanks so much for this... I didn't know about streamstats is that the command for whenever we wanna know the nth position solely? I thought we only had stats thank you so much&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 02:39:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550098#M37966</guid>
      <dc:creator>andres91302</dc:creator>
      <dc:date>2021-05-01T02:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to count or assign or tell the "nth" attempt of an event</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550100#M37967</link>
      <description>&lt;P&gt;streamstats can be used for more than just finding the nth position.&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 08:02:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-count-or-assign-the-number-of-event/m-p/550100#M37967</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-05-01T08:02:35Z</dc:date>
    </item>
  </channel>
</rss>

