<?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: Need Help........... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502058#M1126891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be the same question you asked in another thread?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both fields exist on one row of the source data the best bet is to add a new calculated field in the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UnitPrice,&lt;/P&gt;&lt;P&gt;Cost,&lt;/P&gt;&lt;P&gt;If(UnitPrice &amp;gt; Cost, 1, 0) as AlertCount,&lt;/P&gt;&lt;P&gt;If(UnitPrice &amp;gt; Cost, 'Yes', 'No') as Alert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then have a text box with the following expression to show the number of Alerts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum(AlertCount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could then have an Action on here to select Yes in the Alert field. You could also show Alert as a simple Yes/No List Box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How that helps,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Dec 2013 08:31:29 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2013-12-30T08:31:29Z</dc:date>
    <item>
      <title>Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502052#M1126885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have &lt;STRONG&gt;OrderQty and Schedule Qty..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OrderQty &lt;/STRONG&gt; should be less than &lt;STRONG&gt;ScheduleQty....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;then i want to show alert..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please anyone can help me......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:20:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502052#M1126885</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2013-12-18T13:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502053#M1126886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. DECLARE TWO VARIABLE GLOBALLY (SETTING -&amp;gt;DOCUMENT PROPERTIES-&amp;gt;VARAIBLE)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; VARIABLE1 = SUM(Order Qty)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VARIABLE2 =SUM(Sch Qty)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; NOW GO TO TOOLS -&amp;gt; ALERTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. CLICK ADD BUTTON &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. IN CONDITION BOX TYPE&amp;nbsp;&amp;nbsp; =Variable1&amp;gt;Variable2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp; type OrderQty&amp;nbsp; is greator&amp;nbsp;&amp;nbsp; in message box !!.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. press&amp;nbsp; OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you reload alert box will come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note in your excel data the order quantity is less then sch quantity so alert will not come for year 2013 and month 12&lt;/P&gt;&lt;P&gt;untill if you really want to see alert box the either change and add value or let it automatically happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;anant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502053#M1126886</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T13:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502054#M1126887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502054#M1126887</guid>
      <dc:creator>ljackson</dc:creator>
      <dc:date>2013-12-18T13:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502055#M1126888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I created a chart, then included an 'if' expression to see if the order qty was less than the scheduled order.&amp;nbsp; It creates a new column, but will only show an 'alert' on the relevant line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502055#M1126888</guid>
      <dc:creator>ljackson</dc:creator>
      <dc:date>2013-12-18T13:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502056#M1126889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or this one. Check background color expression of Sch Qty column. No extra columns needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502056#M1126889</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2013-12-18T13:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502057#M1126890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh yes, I prefer your reply to mine!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502057#M1126890</guid>
      <dc:creator>ljackson</dc:creator>
      <dc:date>2013-12-18T13:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help...........</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502058#M1126891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be the same question you asked in another thread?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both fields exist on one row of the source data the best bet is to add a new calculated field in the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UnitPrice,&lt;/P&gt;&lt;P&gt;Cost,&lt;/P&gt;&lt;P&gt;If(UnitPrice &amp;gt; Cost, 1, 0) as AlertCount,&lt;/P&gt;&lt;P&gt;If(UnitPrice &amp;gt; Cost, 'Yes', 'No') as Alert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then have a text box with the following expression to show the number of Alerts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum(AlertCount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could then have an Action on here to select Yes in the Alert field. You could also show Alert as a simple Yes/No List Box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How that helps,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 08:31:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/502058#M1126891</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-12-30T08:31:29Z</dc:date>
    </item>
  </channel>
</rss>

