<?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: Help need in Plots value in chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739744#M1032711</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;A Simple approach is to Highlight the High and Low value with RED and GREEN background .&lt;/P&gt;&lt;P&gt;Go to &amp;gt;expression&amp;gt; click on +&amp;gt; background then &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if( sum(TRAFFIC)/Hr&amp;gt;2,RED(),GREEN())&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Feb 2015 10:53:16 GMT</pubDate>
    <dc:creator>avinashelite</dc:creator>
    <dc:date>2015-02-04T10:53:16Z</dc:date>
    <item>
      <title>Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739742#M1032709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With below details I need to create a chart that need to have 2 category like HIGH &amp;amp;&amp;nbsp; Low&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sum(TRAFFIC)/Hr&amp;gt;2 =High&lt;/P&gt;&lt;P&gt;if sum(TRAFFIC)/Hr&amp;lt;2=Low&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to plot this value at suitable chart. Kindly share your inputs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE_TIME, TYPE&lt;BR /&gt;01:01:2015 00:00:00,TRAFFIC&lt;BR /&gt;01:01:2015 01:50:00,ERROR&lt;BR /&gt;01:01:2015 01:55:00,TRAFFIC&lt;BR /&gt;01:01:2015 02:00:00,TRAFFIC&lt;BR /&gt;01:01:2015 02:35:00,TRAFFIC&lt;BR /&gt;01:01:2015 03:00:00,ERROR&lt;BR /&gt;01:01:2015 03:10:00,TRAFFIC&lt;BR /&gt;01:01:2015 03:50:00,TRAFFIC&lt;BR /&gt;01:01:2015 04:00:00,ERROR&lt;BR /&gt;01:01:2015 04:10:00,TRAFFIC&lt;BR /&gt;01:01:2015 04:15:00,TRAFFIC&lt;BR /&gt;01:01:2015 04:20:00,TRAFFIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 09:17:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739742#M1032709</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-04T09:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739743#M1032710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll need a dimension that rounds your date/time to the nearest hour, maybe split this field out into date and time in your script and then use the Hour(TimeField) function as your dimension. You'd then want to use the count function, so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Count({&amp;lt;TYPE={'TRAFFIC'}&amp;gt;}TYPE)&amp;gt;2, 'HIGH', 'LOW')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would then give you whether traffic was high or low for every hour you have in your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want simply a count of how many 'highs' and 'lows' there would be over all the hours you'll have, you'll need to take the above idea and use an aggr statement splitting by your hour field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: See attached for an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 09:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739743#M1032710</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2015-02-04T09:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739744#M1032711</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;A Simple approach is to Highlight the High and Low value with RED and GREEN background .&lt;/P&gt;&lt;P&gt;Go to &amp;gt;expression&amp;gt; click on +&amp;gt; background then &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if( sum(TRAFFIC)/Hr&amp;gt;2,RED(),GREEN())&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 10:53:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739744#M1032711</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-02-04T10:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739745#M1032712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aaron,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable inputs. Though it helped me to get the idea, however I am having few issues in achieving the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement like I need to classify &lt;STRONG&gt;High &lt;/STRONG&gt;and &lt;STRONG&gt;Low &lt;/STRONG&gt;based&lt;STRONG&gt; &lt;/STRONG&gt;on&lt;STRONG&gt; Traffic&lt;/STRONG&gt; which is 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex If I add Hour as a Dimension, though individually it having the value&amp;nbsp; less than 50 ,when I am summing up it crossing more than 50 at &lt;STRONG&gt;Low&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;All I need to show is only the values less than 50&lt;/P&gt;&lt;P&gt;DATE_TIME, TYPE,Value&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 00:00:00,TRAFFIC,1&lt;/STRONG&gt;&lt;BR /&gt;01:01:2015 01:50:00,ERROR,5&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 01:55:00,TRAFFIC,6&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 02:00:00,TRAFFIC,7&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 02:35:00,TRAFFIC,5&lt;/STRONG&gt;&lt;BR /&gt;01:01:2015 03:00:00,ERROR,10&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 03:10:00,TRAFFIC,12&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 03:50:00,TRAFFIC,14&lt;/STRONG&gt;&lt;BR /&gt;01:01:2015 04:00:00,ERROR,1&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 04:10:00,TRAFFIC,4&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 04:15:00,TRAFFIC,2&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;01:01:2015 04:20:00,TRAFFIC,25&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 09:11:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739745#M1032712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-05T09:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739746#M1032713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to clarify what you're saying, is it when you &lt;STRONG&gt;sum&lt;/STRONG&gt; the traffic within an hour that if it's over 50 it's counted as High, and under 50 counted as low? Or by 50 are you referring to time?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 09:27:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739746#M1032713</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2015-02-05T09:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739747#M1032714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes ,if I sum the TRAFFIC with in hour I need to classify based on 50. Here 50 is benchmark.&lt;/P&gt;&lt;P&gt;Let me know if I am not clear still&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 09:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739747#M1032714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-05T09:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help need in Plots value in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739748#M1032715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed the resident load to be a sum of this "value", then it's just a case of using this field as your counter in your figures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 09:42:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-need-in-Plots-value-in-chart/m-p/739748#M1032715</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2015-02-05T09:42:57Z</dc:date>
    </item>
  </channel>
</rss>

