<?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: Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975102#M333381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henric &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try the set Analysis you gave me,but it is giving me wrong results,I have a list box of closing dates and i have a text box that is suppose to shows number of closing date from today onward,when ever i click on the text box i want to see the closing date from today onward on the closing dates list.&lt;/P&gt;&lt;P&gt;lease advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards &lt;/P&gt;&lt;P&gt;Priscilla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Nov 2015 08:19:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-13T08:19:23Z</dc:date>
    <item>
      <title>Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975097#M333376</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 am new to QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write an expression that returns the number of due date that are grater or equals today's date,but the expression is returning wrong information. This is the expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;=Count(if([Closing date]&amp;gt;= Today(2),[Candidate FullName]))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Priscilla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 09:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975097#M333376</guid>
      <dc:creator />
      <dc:date>2015-11-11T09:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975098#M333377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;May be you need a distinct in there:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;=Count(DISTINCT If([Closing date]&amp;gt;= Today(2), [Candidate FullName]))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 09:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975098#M333377</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-11T09:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975099#M333378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without more information we won't be able to give you an answer, just guesses. Can you post a small qlikview document or that demonstrates the problem? See this document for more information: &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-1290" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7; text-decoration: underline;"&gt;Preparing examples for Upload - Reduction and Data Scrambling&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975099#M333378</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-11-11T10:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975100#M333379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First off, you should probably use Today() or Today(1). Secondly, is [Closing date] a proper (numeric) date field, or is it a string? &lt;EM&gt;Numeric value will right align by default in a list box, strings will left align.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its a string, convert it to a date during the load using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(&lt;SPAN style="font-size: 13.3333px;"&gt;[Closing date]. '&lt;EM&gt;&amp;lt;format of closing date&amp;gt;&lt;/EM&gt;')) As &lt;SPAN style="font-size: 13.3333px;"&gt;[Closing date],&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;EM style="font-size: 13.3333px;"&gt;&amp;lt;format of closing date&amp;gt; &lt;/EM&gt;is the format of the field in your source, eg 'YYYY-MM-DD' or 'D MMM YYYY'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975100#M333379</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-11-11T10:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975101#M333380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Count(distinct if([Closing date]&amp;gt;= Today(2),[Candidate FullName]))&lt;/P&gt;&lt;P&gt;the QIX engine will count &lt;EM style="text-decoration: underline;"&gt;&lt;STRONG&gt;combinations&lt;/STRONG&gt;&lt;/EM&gt; of &lt;SPAN style="font-size: 13.3333px;"&gt;[Closing date] and &lt;SPAN style="font-size: 13.3333px;"&gt;[Candidate FullName]. In other words, if a candidate is associated with several closing dates it will always count the wrong thing.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better then to use Set Analysis, which will count the right thing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Count(distinct {$&amp;lt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;[Closing date]={"&amp;gt;=$(=Today(2))&lt;/SPAN&gt;"}&amp;gt;} [Candidate FullName]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975101#M333380</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-11-11T10:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975102#M333381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henric &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try the set Analysis you gave me,but it is giving me wrong results,I have a list box of closing dates and i have a text box that is suppose to shows number of closing date from today onward,when ever i click on the text box i want to see the closing date from today onward on the closing dates list.&lt;/P&gt;&lt;P&gt;lease advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards &lt;/P&gt;&lt;P&gt;Priscilla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 08:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975102#M333381</guid>
      <dc:creator />
      <dc:date>2015-11-13T08:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975103#M333382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Set Analysis expression will calculate a number and display this. So if you use it in a text box, you will see this number here. If the number isn't correct, then you need to post the qvw file so that we can look at what goes wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clicking on the text box will not make any selections, so you cannot change what you see in the list box this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 08:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975103#M333382</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-11-13T08:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975104#M333383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.datafilehost.com/d/534d336f" title="http://www.datafilehost.com/d/534d336f"&gt;Download Priscilla's recrit.qvw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;please check the link above the text box that is suppose to show the number is the due count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 09:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975104#M333383</guid>
      <dc:creator />
      <dc:date>2015-11-13T09:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975105#M333384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't want to download an exe from an unknown web site. Can you not just attach the file to your answer? ("Use advanced editor" then "Attach")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:20:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975105#M333384</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-11-13T11:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975106#M333385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have attache the QV file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 12:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975106#M333385</guid>
      <dc:creator />
      <dc:date>2015-11-13T12:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975107#M333386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your problem is in the data model. It looks like the following:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Image1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/105456_Image1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a synthetic key that might cause problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect that all the candidates are found in the ZAK_RECRUTMENT, and if so you should not load the Candidat Spec table. Just remove the Load that loads this table. Or name the "Spec" from this table something else than "Spec".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 16:39:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975107#M333386</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-11-13T16:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/975108#M333387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;you are right the problem in in the data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 07:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/975108#M333387</guid>
      <dc:creator />
      <dc:date>2015-11-16T07:55:16Z</dc:date>
    </item>
  </channel>
</rss>

