<?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: Set Analysis Track Conversion Over time in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566930#M41334</link>
    <description>Sure.. put you logic for date into a variable and use it&lt;BR /&gt;e.g. vDateLogc = MakeDate(Year(today()), Month(today()),4)&lt;BR /&gt;&lt;BR /&gt;then similar syntax but substitute the variable instead of the fucntion&lt;BR /&gt;Order date={"&amp;lt;=$(=vDateLogc)"}&lt;BR /&gt;&lt;BR /&gt;mark as answered and close thread if it solves the issue</description>
    <pubDate>Tue, 09 Apr 2019 12:44:41 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2019-04-09T12:44:41Z</dc:date>
    <item>
      <title>Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565389#M41174</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;I'm hoping you can help me with the best way to approach this.&lt;/P&gt;&lt;P&gt;If I have at the start of the month £100,000 of Apples orders at the start of the month. I want to calculate the conversion rate of how many orders were finalised at the end of the month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;100 [Open] Orders&amp;nbsp;@ start of month&amp;nbsp;&lt;/P&gt;&lt;P&gt;50 [Closed] Orders&amp;nbsp;@ end of month&amp;nbsp;&lt;/P&gt;&lt;P&gt;Conversion Rate should be 50% - How would i calculate this?&lt;/P&gt;&lt;P&gt;However the orders status field for every order "Open", "Closed" can change over time depending on Sales Orders. How would i capture the status of the order at a certain time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Key Fields -&lt;/P&gt;&lt;P&gt;[Order Status]&lt;/P&gt;&lt;P&gt;[Order Create Date]&lt;/P&gt;&lt;P&gt;[Order Close Date]&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:06:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565389#M41174</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2024-11-16T21:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565427#M41176</link>
      <description>&lt;P&gt;First things add month year to your data&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;load

[Order Status]

,[Order Create Date]
,date(monthstart([Order Create Date]), 'MMM-YYYY') as [Order Create MonthYear]

,[Order Close Date]
,date(monthstart([Order Close Date]), 'MMM-YYYY') as [Order Close MonthYear]

from YOURSOURCE&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then&amp;nbsp;&lt;/P&gt;&lt;P&gt;use set analysis&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Open Orders&amp;nbsp;@ start of current month&amp;nbsp; (for april 2019 find records with create month year before apr-2019)&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Count(  {&amp;lt; [Order Create MonthYear]={"&amp;lt;$(=date(monthstart(today()), 'MMM-YYYY'))"}  &amp;gt;}
           OrderID)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Closed Orders current month&amp;nbsp; &amp;nbsp;(for april 2019 find records with close month year as apr-2019)&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Count(  {&amp;lt; [Order Close MonthYear]={$(=date(monthstart(today()), 'MMM-YYYY'))}  &amp;gt;}
           OrderID)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 19:51:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565427#M41176</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-04T19:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565428#M41177</link>
      <description>ideally create master calendars for your date fields</description>
      <pubDate>Thu, 04 Apr 2019 19:52:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1565428#M41177</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-04T19:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566819#M41327</link>
      <description>&lt;P&gt;Hi Dilpranjith,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help on this.&lt;/P&gt;&lt;P&gt;For open orders, how would i count all orders up to a specific date i.e 04/04/2019? instead of before April?&lt;/P&gt;&lt;PRE&gt;Count(  {&amp;lt; [Order Create MonthYear]={"&amp;lt;$(=date(monthstart(today()), 'MMM-YYYY'))"}  &amp;gt;}
           OrderID)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 09:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566819#M41327</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2019-04-09T09:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566877#M41331</link>
      <description>Is the 4/4/2019 static?&lt;BR /&gt;If it is Use your original date column and use makedate function in same format as above&lt;BR /&gt;E g&lt;BR /&gt;Order date={"&amp;lt;=$(=makedate (2019,4,4))"}&lt;BR /&gt;&lt;BR /&gt;Typing on phone double check the open and close of braces and quotes</description>
      <pubDate>Tue, 09 Apr 2019 11:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566877#M41331</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-09T11:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566918#M41333</link>
      <description>&lt;P&gt;Hi Dilipranjith,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes your right it would be better if it is dynamic. Is there a way to say when we are in April its 04/04/19 and then when we are in May it will be 04/05/19 and then in June 04/06/19 ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 12:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566918#M41333</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2019-04-09T12:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566930#M41334</link>
      <description>Sure.. put you logic for date into a variable and use it&lt;BR /&gt;e.g. vDateLogc = MakeDate(Year(today()), Month(today()),4)&lt;BR /&gt;&lt;BR /&gt;then similar syntax but substitute the variable instead of the fucntion&lt;BR /&gt;Order date={"&amp;lt;=$(=vDateLogc)"}&lt;BR /&gt;&lt;BR /&gt;mark as answered and close thread if it solves the issue</description>
      <pubDate>Tue, 09 Apr 2019 12:44:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1566930#M41334</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-09T12:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567057#M41345</link>
      <description>&lt;P&gt;Hi Dilpranjth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you that was really helpful. But I am still not there&amp;nbsp; to the desired result.. I want to track the changes if possible?&lt;/P&gt;&lt;P&gt;Order Won Month can be changed at any time.. Is there a way to capture all orders that have order won month has been changed?&lt;/P&gt;&lt;P&gt;i.e&amp;nbsp;&lt;/P&gt;&lt;P&gt;Order 1 - [Won month] = April 2019&lt;/P&gt;&lt;P&gt;Order 2 - [Won month] = April 2019&lt;/P&gt;&lt;P&gt;Order 2 changes its won month to May 2019. How would I capture the change?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Aaron&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 15:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567057#M41345</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2019-04-09T15:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567079#M41348</link>
      <description>&lt;BR /&gt;thats more of a question on the data / business side&lt;BR /&gt;how is that change recorded on the database?&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Apr 2019 15:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567079#M41348</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-09T15:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567080#M41349</link>
      <description>&lt;P&gt;It is just overrided via the CRM system..&lt;/P&gt;&lt;P&gt;Is there anyway QV can capture a status in point in time and if it changes from what it previously is?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 15:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567080#M41349</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2019-04-09T15:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Track Conversion Over time</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567089#M41353</link>
      <description>it can but how depends on what you want to achive.&lt;BR /&gt;&lt;BR /&gt;you may need to save your data into a qvd on a daily basis.&lt;BR /&gt;read current data - check against saved qvd for changes in some way etc.&lt;BR /&gt;&lt;BR /&gt;overall my first question would be what business benefit is there by capturing the change&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Apr 2019 15:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Track-Conversion-Over-time/m-p/1567089#M41353</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-09T15:59:59Z</dc:date>
    </item>
  </channel>
</rss>

