<?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 Number to time format and distribution chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282440#M1202869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using Qlikview Personal version, so I can't import any file....&lt;/P&gt;&lt;P&gt;Could you copy it as text, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Oct 2010 19:38:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-10-15T19:38:03Z</dc:date>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282434#M1202861</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've a table with performance values from a monitoring systems.&lt;/P&gt;&lt;P&gt;This information is related with "response time" in seconds.&lt;/P&gt;&lt;P&gt;The values are between 0,001 s and 59,999 s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;How can I change it in "ms" in case value is greater than 1,000 seconds (including the units)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0,055 -&amp;gt; 550ms&lt;/P&gt;&lt;P&gt;7,35 -&amp;gt; 7,35s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;I need to create a graph in order to know the response time distribution. How can I create it?&lt;/P&gt;&lt;P&gt;(It seems easy: count how many values are in every 0,1s range and print it....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 14:53:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282434#M1202861</guid>
      <dc:creator />
      <dc:date>2010-10-14T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282435#M1202862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As for point 1, I think it would be better that the user see values that have the same units, but you should be able to do something like the following:&lt;/P&gt;&lt;P&gt;if(sum([Time_In_Seconds])&amp;gt;1000,&lt;/P&gt;&lt;P&gt;num(sum([Time_In_Seconds])/1000,'#.##,00 ms'),&lt;/P&gt;&lt;P&gt;num(sum([Time_In_Seconds]),'#.##,00 s'))&lt;/P&gt;&lt;P&gt;For point 2, investigate the class function in QV help or in the forum. You have to make a calculated dimension with the class function and put the count as an expression.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 20:48:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282435#M1202862</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-14T20:48:12Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282436#M1202863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Great!&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;It works!!! I use class function and it works ok when I just select one "service" in order to know his response time distribution. But I've problems selecting more than one service when "relative" is activated. (and I really need it!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My dimensions are:&lt;/P&gt;&lt;P&gt;=if( performance_data.value&amp;lt;3, class(performance_data.value, 0.5,'segons'))&lt;/P&gt;&lt;P&gt;servicecheck_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And my expression is:&lt;/P&gt;&lt;P&gt;Count(performance_data.value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this configuration:&lt;/P&gt;&lt;P&gt;a) selecting "service A" it has 80% of response time between 0-0,3s&lt;/P&gt;&lt;P&gt;b) selecting "service A and service B", service A has just 25% of response time between 0-0,3s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose that Qlikview applies "relative" with all information data and not for each dimension. Isn't it? How could I solve it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank ypu so much!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 12:00:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282436#M1202863</guid>
      <dc:creator />
      <dc:date>2010-10-15T12:00:59Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282437#M1202864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, instead of using the relative option in QlikView you would have to do something like the following to always return the porcent per each service:&lt;/P&gt;&lt;P&gt;count(performance_data.value)&lt;BR /&gt;/&lt;BR /&gt;count(Total &amp;lt;servicecheck_name&amp;gt; performance_data.value)&lt;/P&gt;&lt;P&gt;I don't know know if this will work correctly with the dimension you have defined, but I hope it points you in the right direction. If you need more help upload an example of your application.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 15:54:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282437#M1202864</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-15T15:54:57Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282438#M1202865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer but I'm calcuating a distribution chart, so I can't change the expression...&lt;/P&gt;&lt;P&gt;I need the % of occurrencies in each range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what info could I upload, so I'll try to give you an easy example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;servicechecks Table:&lt;/P&gt;&lt;P&gt;ID name&lt;/P&gt;&lt;P&gt;1 Service A&lt;/P&gt;&lt;P&gt;2 Service B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;performance_data Table:&lt;/P&gt;&lt;P&gt;ID Time value&lt;/P&gt;&lt;P&gt;1 d1 0,45&lt;/P&gt;&lt;P&gt;1 d2 0,3&lt;/P&gt;&lt;P&gt;1 d3 0,75&lt;/P&gt;&lt;P&gt;2 d4 0,75&lt;/P&gt;&lt;P&gt;2 d5 0,15&lt;/P&gt;&lt;P&gt;2 d6 1,3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, using the previous dimension ans expression definition I was trying to get that results:&lt;/P&gt;&lt;P&gt;* selecting just ServiceB:&lt;/P&gt;&lt;P&gt;Range Ocurrencies %&lt;/P&gt;&lt;P&gt;0-0,5 2 66%&lt;/P&gt;&lt;P&gt;0,5-1 1 33%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* selecting ServiceA and ServiceB:&lt;/P&gt;&lt;P&gt;Range Service Ocurrencies %&lt;/P&gt;&lt;P&gt;0-0,5 ServiceA 2 66% (and using relative I get 33%)&lt;/P&gt;&lt;P&gt;0-0,5 ServiceB 1 33% (and using relative I get 16%)&lt;/P&gt;&lt;P&gt;0,5-1 ServiceA 1 33% (and using relative I get 16%)&lt;/P&gt;&lt;P&gt;0,5-1 ServiceB 1 33% (and using relative I get 16%)&lt;/P&gt;&lt;P&gt;1-1,5 ServiceB 1 33% (and using relative I get 16%)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if I try to make a % manually modifying the expression, I won't calculate time in each range...&lt;/P&gt;&lt;P&gt;Isn't it? How could I get it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much.&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>Fri, 15 Oct 2010 17:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282438#M1202865</guid>
      <dc:creator />
      <dc:date>2010-10-15T17:05:06Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282439#M1202866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the formula I recommended above and it seemed to work. See the attached example.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 17:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282439#M1202866</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-15T17:19:53Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282440#M1202869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using Qlikview Personal version, so I can't import any file....&lt;/P&gt;&lt;P&gt;Could you copy it as text, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 19:38:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282440#M1202869</guid>
      <dc:creator />
      <dc:date>2010-10-15T19:38:03Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282441#M1202873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the picture of the table. Using the same column names and data as above, the dimensions are:&lt;/P&gt;&lt;P&gt;=class(value,.5)&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;name&lt;/P&gt;&lt;P&gt;The expressions are:&lt;/P&gt;&lt;P&gt;count(distinct Time)&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;count(distinct Time)/count(distinct total &amp;lt;name&amp;gt; Time)&lt;/P&gt;&lt;P&gt;Regards.&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>Fri, 15 Oct 2010 20:23:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282441#M1202873</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-15T20:23:10Z</dc:date>
    </item>
    <item>
      <title>Number to time format and distribution chart</title>
      <link>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282442#M1202874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're right. It works!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I completely forgot the class function defining the dimension... so I couldn't understand it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I've my trellis graph and, overall, I've understand how does it work!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Oct 2010 11:46:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-to-time-format-and-distribution-chart/m-p/282442#M1202874</guid>
      <dc:creator />
      <dc:date>2010-10-18T11:46:00Z</dc:date>
    </item>
  </channel>
</rss>

