<?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 Set Analysis - Beginner in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238499#M89358</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;assume a date format problem. Can you try to filter on a fixed date and play around with the formats you might be using , 12-05-2010, 2010-12-05 etc.&lt;/P&gt;&lt;P&gt;e.g. sum({&amp;lt;[%CalendarKey] = {'12/05/2010'}&amp;gt;} soi_Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 May 2010 13:09:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-05-12T13:09:51Z</dc:date>
    <item>
      <title>Set Analysis - Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238495#M89354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi....&lt;/P&gt;&lt;P&gt;I've just recently upgraded to version 9 which means that I can start to use Set Analysis instead IF statements.&lt;/P&gt;&lt;P&gt;I have the following expression....&lt;/P&gt;&lt;P&gt;=sum(IF(%CalendarKey = varToday, soi_Sales))&lt;/P&gt;&lt;P&gt;How do I convert this to set analysis...?&lt;/P&gt;&lt;P&gt;I have tried..&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;[%CalendarKey]={$(=varToday)}&amp;gt;} soi_Sales) /1000&lt;/P&gt;&lt;P&gt;QlikView doesn't report any error with the statement but my column just has blank entries.&lt;/P&gt;&lt;P&gt;Where am I going wrong...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 09:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238495#M89354</guid>
      <dc:creator>pkelly</dc:creator>
      <dc:date>2010-05-12T09:11:53Z</dc:date>
    </item>
    <item>
      <title>Set Analysis - Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238496#M89355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum({$&amp;lt; [ %CalendarKey ] = varToday)&amp;gt;} soi_Sales) /1000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum( { $ &amp;lt; [ %CalendarKey ] = { $(varToday) } &amp;gt; } soi_Sales) /1000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and one more thing check whether the varToday Variable contains any value or not since if it is null ,the result will be null...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ajay&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 10:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238496#M89355</guid>
      <dc:creator>spsrk_84</dc:creator>
      <dc:date>2010-05-12T10:15:10Z</dc:date>
    </item>
    <item>
      <title>Set Analysis - Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238497#M89356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Forgot to say one more point check the format of data in both the fileds i.e in &lt;STRONG&gt;[ %CalendarKey ] and the varToday variable....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;even if the foramts are matching it will result nulll&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ajay&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 10:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238497#M89356</guid>
      <dc:creator>spsrk_84</dc:creator>
      <dc:date>2010-05-12T10:18:36Z</dc:date>
    </item>
    <item>
      <title>Set Analysis - Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238498#M89357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ajay&lt;/P&gt;&lt;P&gt;Think the second one is closest as the first is giving an error...&lt;/P&gt;&lt;P&gt;Still getting blanks though...&lt;/P&gt;&lt;P&gt;varToday has 12/05/2010 as its value (dd/mm/yyyy)&lt;/P&gt;&lt;P&gt;I do have records as this is looking at sales order intake...&lt;/P&gt;&lt;P&gt;Any help greatly appreciated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 12:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238498#M89357</guid>
      <dc:creator>pkelly</dc:creator>
      <dc:date>2010-05-12T12:23:50Z</dc:date>
    </item>
    <item>
      <title>Set Analysis - Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238499#M89358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;assume a date format problem. Can you try to filter on a fixed date and play around with the formats you might be using , 12-05-2010, 2010-12-05 etc.&lt;/P&gt;&lt;P&gt;e.g. sum({&amp;lt;[%CalendarKey] = {'12/05/2010'}&amp;gt;} soi_Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 13:09:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Beginner/m-p/238499#M89358</guid>
      <dc:creator />
      <dc:date>2010-05-12T13:09:51Z</dc:date>
    </item>
  </channel>
</rss>

