<?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: Chart - assistance with expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973220#M1220635</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thank you for your response. Unfortunately I will have other days outside of the 3 days scope as well.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Aug 2022 16:50:21 GMT</pubDate>
    <dc:creator>QFanatic</dc:creator>
    <dc:date>2022-08-25T16:50:21Z</dc:date>
    <item>
      <title>Chart - assistance with expression</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973075#M1220626</link>
      <description>&lt;P&gt;Good day, I'm attaching a really simple sample so as not to step on toes :).&lt;/P&gt;
&lt;P&gt;In my Excel file I have records for 3 people, for the last 3 days - if they've paid any accounts or not on that particular day.&lt;/P&gt;
&lt;P&gt;Eventually I want my chart ONLY to display people that have NOT paid any accounts - for ALL 3 days.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm battling with the syntax of the chart. Please if you may assist.&lt;/P&gt;
&lt;P&gt;1. What I'm trying to do is set an indicator, per Person - of 1 or 0 so that I can visually see whom I'd like to interrogate further - in this instance I would like to speak with Joe (all 3 days add up to 0). He's in trouble, LOL.&lt;/P&gt;
&lt;P&gt;What does my expression need to look like?&lt;/P&gt;
&lt;P&gt;2. Once this is correct - I want to fire an Nprinting report for our Accounts Dept to follow up with these Non Payers only - ( Joe). So ideally I want to set some variable to 'Yes' or 'No' if there are &lt;STRONG&gt;ANY&lt;/STRONG&gt; people who didnt pay accounts. If everyone has paid within the last 3 days, I'm happy and dont want to fire the report.&lt;/P&gt;
&lt;P&gt;I cannot get this variable right either.&lt;/P&gt;
&lt;P&gt;Would appreciate some assistance here, as I've got a requirement for something similar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 13:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973075#M1220626</guid>
      <dc:creator>QFanatic</dc:creator>
      <dc:date>2022-08-25T13:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Chart - assistance with expression</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973188#M1220634</link>
      <description>&lt;P&gt;Hi !&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you could try using a flag instead of a variable; if your data will always be related to the last 3 days, could be something like:&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;FACT: &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Person,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Date#&lt;/SPAN&gt;&lt;SPAN&gt;(Date, &lt;/SPAN&gt;&lt;SPAN&gt;'DD/MM/YYYY'&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt;&lt;SPAN&gt; Date,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Accounts_Paid, &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Within last 3 days]&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;.xls;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;Flag_solution:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;NOCONCATENATE&lt;/SPAN&gt; &lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Person,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt; (Accounts_Paid) &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;AS&lt;/SPAN&gt;&lt;SPAN&gt; FLAG_PAID &lt;/SPAN&gt;&lt;SPAN&gt;//you will be interested in the zero values&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;RESIDENT&lt;/SPAN&gt;&lt;SPAN&gt; FACT&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;GROUP BY&lt;/SPAN&gt;&lt;SPAN&gt; Person;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;DROP&lt;/SPAN&gt; &lt;SPAN&gt;TABLE&lt;/SPAN&gt;&lt;SPAN&gt; FACT;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 16:00:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973188#M1220634</guid>
      <dc:creator>AR_Gonza_2107</dc:creator>
      <dc:date>2022-08-25T16:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Chart - assistance with expression</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973220#M1220635</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thank you for your response. Unfortunately I will have other days outside of the 3 days scope as well.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 16:50:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-assistance-with-expression/m-p/1973220#M1220635</guid>
      <dc:creator>QFanatic</dc:creator>
      <dc:date>2022-08-25T16:50:21Z</dc:date>
    </item>
  </channel>
</rss>

