<?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 segmentation development of customers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403616#M818995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I follow... your if statement uses this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if (&lt;STRONG style="color: #ff0000;"&gt;iscustomeratleast6months&lt;/STRONG&gt;=1,sum(salesamount)&amp;gt;1000) then segment=A&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;else if (iscustomeratleast6months=0) then Segment=B&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;else if (isCustomeratleast6months=1,atcollection=1) then Segment=C&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and so on..&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;What is iscustomeratleast6months? How do I know if the value is 1 or 0?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Aug 2017 11:08:02 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-08-16T11:08:02Z</dc:date>
    <item>
      <title>How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403611#M818986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I want to create a table that shows how the customer develops from one segment from one month to another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;P&gt;if (iscustomeratleast6months=1,sum(salesamount)&amp;gt;1000) then segment=A&lt;/P&gt;&lt;P&gt;else if (iscustomeratleast6months=0) then Segment=B&lt;/P&gt;&lt;P&gt;else if (isCustomeratleast6months=1,atcollection=1) then Segment=C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should be able to do all these calculations from my tables Transactions and Customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how do I create these segments, and show how the customers develop per month?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been googeling quite a lot, but my lack of technical expertise makes it hard to understand how to transfer the examples to my own dataset. Can any of you please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;CustomerID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;2017_01&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;2017_02&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;2017_03&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12345&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12346&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12347&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12348&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Xili Lin&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-segmentation-development-of-customers/m-p/1403611#M818986</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403612#M818987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share some raw sample data which includes the flags such as iscustomeratleast6months and other fields such as salesamount and CustomerID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Aug 2017 11:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403612#M818987</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-15T11:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403613#M818988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried to create a sample set. The customertable only shows todays values, so man plan is to make historic data from now on, but for now I've only got the present data. I do however have a lot of salesdata. I'm worried that the sales data might break the report if I use too many calculations. So what would be the smart thing to do? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Aug 2017 13:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403613#M818988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-15T13:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403614#M818991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you create &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;iscustomeratleast6months flag? look at the max salesdate and compare it to Today - 6 months? Also, Sum(SalesAmount) is at the customer level? You need this on the front end of the application?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Aug 2017 14:14:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403614#M818991</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-15T14:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403615#M818993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't create the iscutomeratleast6monthsflag, it is a set variable from the DWH. The salesamount is at customer level.&lt;/P&gt;&lt;P&gt;My main problem is where to create all the ifs, and how. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 09:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403615#M818993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-16T09:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create segmentation development of customers</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403616#M818995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I follow... your if statement uses this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if (&lt;STRONG style="color: #ff0000;"&gt;iscustomeratleast6months&lt;/STRONG&gt;=1,sum(salesamount)&amp;gt;1000) then segment=A&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;else if (iscustomeratleast6months=0) then Segment=B&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;else if (isCustomeratleast6months=1,atcollection=1) then Segment=C&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and so on..&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;What is iscustomeratleast6months? How do I know if the value is 1 or 0?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 11:08:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-segmentation-development-of-customers/m-p/1403616#M818995</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-16T11:08:02Z</dc:date>
    </item>
  </channel>
</rss>

