<?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 create sequence based on start time for gantt chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100805#M752453</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, I think I helped you with this last time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I made the wrong assumption last time I helped you with this that your data would load in in order, so there would be no need to sort the data before adding the event numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should be fixed fairly easily by adding Order By to your Test table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;AutoNumber(tmpEvent, JobName) as Event&lt;/P&gt;&lt;P&gt;Resident Temp1&lt;/P&gt;&lt;P&gt;Order By Start_Time asc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This makes sure the start times are always sorted from earliest to latest so your most recent event will always be the highest Event number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if it works &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2018 12:06:24 GMT</pubDate>
    <dc:creator>jensmunnichs</dc:creator>
    <dc:date>2018-10-12T12:06:24Z</dc:date>
    <item>
      <title>How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100804#M752452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have few jobs that are running few times in a day. In my data model I have jobs start time and end time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have stack gantt chart where I am plotting this information .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I need to create jobs sequence based on the jobs start time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My load script looks like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spike:&lt;BR /&gt;LOAD *,&lt;BR /&gt;Interval(End_Time - Start_Time,'mm:ss') as Diff;&lt;/P&gt;&lt;P&gt;LOAD JobName, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;BR /&gt;&amp;nbsp; .....&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(Start_Time,'DD-MM-YYYY hh:mm:ss') as Start_Time,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(End_Time,'DD-MM-YYYY hh:mm:ss') as End_Time,&lt;BR /&gt;&amp;nbsp; DATE(FLOOR(Start_Time), 'DD-MMM-YY') as Date&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;FROM&lt;BR /&gt;[..\xxx.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Temp1:&lt;BR /&gt;load *,&lt;BR /&gt;RowNo() as tmpEvent&lt;BR /&gt;Resident Spike;&lt;/P&gt;&lt;P&gt;Test:&lt;BR /&gt;NoConcatenate &lt;BR /&gt;LOAD *,&lt;BR /&gt;AutoNumber(tmpEvent, JobName) as Event&lt;BR /&gt;Resident Temp1;&lt;BR /&gt;Drop Field tmpEvent;&lt;/P&gt;&lt;P&gt;Drop table Temp1;&lt;BR /&gt;drop table Spike;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My gantt chart looks like the following: Nothing to be modified in the chart , it looks good.&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/215767_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Event field is giving me jobs sequence.&lt;/P&gt;&lt;P&gt;However I noticed that it is not giving correct sequence based on the start time of the job, if I&amp;nbsp; plot straight table and get job&amp;nbsp; , start time, end time, and Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me how do I get this Event based on the jobs start time. So if the job start first the sequence would be 1 and then subsequently it would show 2,3,.....N&lt;/P&gt;&lt;P&gt;Currently it is showing like the following:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/215771_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ashis&lt;/P&gt;&lt;P&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100804#M752452</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100805#M752453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, I think I helped you with this last time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I made the wrong assumption last time I helped you with this that your data would load in in order, so there would be no need to sort the data before adding the event numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should be fixed fairly easily by adding Order By to your Test table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;AutoNumber(tmpEvent, JobName) as Event&lt;/P&gt;&lt;P&gt;Resident Temp1&lt;/P&gt;&lt;P&gt;Order By Start_Time asc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This makes sure the start times are always sorted from earliest to latest so your most recent event will always be the highest Event number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if it works &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 12:06:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100805#M752453</guid>
      <dc:creator>jensmunnichs</dc:creator>
      <dc:date>2018-10-12T12:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100806#M752454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that's correct you are the one who helped me to get this. I was trying to tag you in my post however did not find that option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for helping me. I appreciate your time and effort.&lt;/P&gt;&lt;P&gt;if I put order by I am getting the following result that is correct .&lt;/P&gt;&lt;P&gt;However i was thinking if i get this result in ascending order starting from 1 ......N .&lt;/P&gt;&lt;P&gt;I tried order by JobName and Start_time&amp;nbsp; but the same result.&lt;/P&gt;&lt;P&gt;Any thought.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/215786_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 13:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100806#M752454</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T13:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100807#M752455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Surprising my for few jobs the event starting just as the image above 8 ,9,10......N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However i just noticed for some it is showing as expected . 1.2,3....N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:02:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100807#M752455</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T14:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100808#M752456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you create part of the table you want in Excel to make it a bit more clear what the problem is? Or is it just that the 'Event' numbering doesn't start at 1 for every job?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:05:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100808#M752456</guid>
      <dc:creator>jensmunnichs</dc:creator>
      <dc:date>2018-10-12T14:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100809#M752457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the Event number does not start at 1 for every job.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:15:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100809#M752457</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T14:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100810#M752458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is rather strange... any chance you could post your (reloaded) .qvw?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel like the only way this would happen is if the Jobname is the same as another job before... But it's hard to tell without seeing your data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100810#M752458</guid>
      <dc:creator>jensmunnichs</dc:creator>
      <dc:date>2018-10-12T14:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100811#M752459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cant really upload qvw due to security . &lt;/P&gt;&lt;P&gt;Could be you are right, I will investigate on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100811#M752459</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100812#M752460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I figured as much, understandable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe try commenting(/removing) the 'Drop field tmpEvent' in your script and adding that column to the table you sent a screenshot of earlier... That might clear some things up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100812#M752460</guid>
      <dc:creator>jensmunnichs</dc:creator>
      <dc:date>2018-10-12T14:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100813#M752461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No , tmpEvent field does not work , it is giving similar output.&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/215793_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:43:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100813#M752461</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T14:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100814#M752462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately I don't really know what's causing the issue, and I won't really have time to look into it any further until next week, so I'm hoping someone else can help you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/2286"&gt;rwunderlich&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/15823"&gt;swuehl&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if these are the right people to tag, but they are names I see around here a lot. Does anyone have any idea why his Autonumber isn't starting at 1 for every JobName?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 14:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100814#M752462</guid>
      <dc:creator>jensmunnichs</dc:creator>
      <dc:date>2018-10-12T14:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100815#M752463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is JobName the only selection you have made in your dashboard when you took the screenshot? Is it possible you have other selections (may be in hidden fields) which are hiding the rows where the Event is 1, 2, 3 in the above screenshot?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 15:09:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100815#M752463</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T15:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100816#M752464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Hi Sunny,&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;Jobname and date and job description are my filter criteria.&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;Jobname are unique to their description.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Same jobname would not belong to different job description.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 17:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100816#M752464</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-12T17:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100817#M752465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this mean you have an active selection on date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 19:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100817#M752465</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-10-12T19:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100818#M752466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I should select a date , because this report is all about , in a day what time jobs is starting and what time job is ending .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ashis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 05:53:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100818#M752466</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-15T05:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100819#M752467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The question is:&lt;/P&gt;&lt;P&gt;Did you have an active selection on Date field, precisely on 06-Sep-2018, when you were taking the screenshot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you make a selection on a specific date, you shouldn't be surprised that the sequence numbers don't start on 1, in the case where there are records on a previous date excluded by your current selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sequence number generation is made in the script, hence won't be updated when making selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to restart your sequence with 1 for a new Jobname or new date for a given Jobname, then you can add the Date to the autonumber second argument, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AutoNumber(tmpEvent, &lt;STRONG&gt;JobName &amp;amp; Date&lt;/STRONG&gt;) as Event&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 07:36:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100819#M752467</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-10-15T07:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100820#M752468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Stefan. I believe that is what happening here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is giving sequence if I put&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AutoNumber(tmpEvent, &lt;STRONG&gt;JobName &amp;amp; Date&lt;/STRONG&gt;) as Event&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 08:48:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100820#M752468</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-15T08:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100821#M752469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please mark appropriate responses as correct and helpful instead of marking your own response as helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100821#M752469</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-15T11:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100822#M752470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for pointing it , I did my answer helpful by mistake .&lt;/P&gt;&lt;P&gt; I have marked Stefan's answer as helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 04:53:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100822#M752470</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2018-10-16T04:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sequence based on start time for gantt chart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100823#M752471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.qlik.com/people/ashissau"&gt;ashissau&lt;/A&gt;‌!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 11:20:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-sequence-based-on-start-time-for-gantt-chart/m-p/100823#M752471</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-16T11:20:14Z</dc:date>
    </item>
  </channel>
</rss>

