<?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 how to keep the value constant in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347232#M829365</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm working on a project&amp;nbsp; i need to find availability of application and each and every system work in different times so i manage to flag working days ,Saturday and Sunday for the applications. the problem i'm having is when i click on in the application i need it to consider the whole month not that day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g&amp;nbsp; Jan 2017&amp;nbsp; have&amp;nbsp; 22 working days&amp;nbsp; , 4 Saturday , 5 Sunday&amp;nbsp;&amp;nbsp; if i click on lets say&amp;nbsp; facebook (as application for example purpose) i can get total min for the whole months total min = workingdays(whole month) * minutes that the application is been up. &lt;/P&gt;&lt;P&gt;&amp;nbsp; the problem i'm having is that that qlikview look at an application at that particular day not the whole month. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i keep the working days , saturday and sunday days constant for each and every month ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>thabo2g5</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347232#M829365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm working on a project&amp;nbsp; i need to find availability of application and each and every system work in different times so i manage to flag working days ,Saturday and Sunday for the applications. the problem i'm having is when i click on in the application i need it to consider the whole month not that day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g&amp;nbsp; Jan 2017&amp;nbsp; have&amp;nbsp; 22 working days&amp;nbsp; , 4 Saturday , 5 Sunday&amp;nbsp;&amp;nbsp; if i click on lets say&amp;nbsp; facebook (as application for example purpose) i can get total min for the whole months total min = workingdays(whole month) * minutes that the application is been up. &lt;/P&gt;&lt;P&gt;&amp;nbsp; the problem i'm having is that that qlikview look at an application at that particular day not the whole month. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i keep the working days , saturday and sunday days constant for each and every month ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347232#M829365</guid>
      <dc:creator>thabo2g5</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347233#M829366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide the expression here which you are using for finding Total Min&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 08:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347233#M829366</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-06-23T08:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347234#M829367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;calendar that flags if days are workingdays ,sat or sunday &lt;/P&gt;&lt;P&gt;MasterCalendar:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WeekDay &amp;lt;5, 1,0) as IsWorkingDay,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WeekDay = 5, 1,0) as IsSaturday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WeekDay = 6,1,0) as IsSunday;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //if(WeekDay = 24, as IS=s24hours;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; num(TempDate) AS start_date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(TempDate) AS Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(TempDate) AS Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(Monthstart(TempDate), 'D-MMM-YY') as YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Weekday(TempDate) AS WeekDay,&lt;/P&gt;&lt;P&gt;&amp;nbsp; inyeartodate(TempDate, maxdate, 0) * -1 AS CurYTDFlag,&lt;/P&gt;&lt;P&gt;&amp;nbsp; inyeartodate(TempDate, maxdate, -1) * -1 AS LastYTDFlag&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;//=== Generate a temp table of dates ===&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; date(mindate + IterNo()) AS TempDate&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,maxdate // Used in InYearToDate() above, but not kept&lt;/P&gt;&lt;P&gt;WHILE mindate + IterNo() &amp;lt;= maxdate&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;//=== Get min/max dates from fact table ===/&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; min(start_date)-1 as mindate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; max(start_date) as maxdate&lt;/P&gt;&lt;P&gt;RESIDENT [Snow Data]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;total min expressions &lt;/P&gt;&lt;P&gt;=sum(IsSaturday*Min_Sat)+sum(IsSunday*Min_Sun)+sum(IsWorkingDay*Min_WeekDay)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347234#M829367</guid>
      <dc:creator>thabo2g5</dc:creator>
      <dc:date>2017-06-23T09:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347235#M829368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&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;=sum({1}IsSaturday*Min_Sat)+sum({1}IsSunday*Min_Sun)+sum({1}IsWorkingDay*Min_WeekDay)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:08:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347235#M829368</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-06-23T09:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347236#M829369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for the effort&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would like it to stay constant for every month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g jan has 22 working days , 4 sat and 5 sunday&lt;/P&gt;&lt;P&gt;&amp;nbsp; feb have 20 working days , 4 sat and 4 sunday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;want qlikview to give me this numbers , so that i can get total min &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g&amp;nbsp; for january 2017&lt;/P&gt;&lt;P&gt;(22*660(minutes)) + (4*430(min)) + (5*160(min))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt; for jFeb 2017&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(20*660(minutes)) + (4*430(min)) + (4*160(min))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 11:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347236#M829369</guid>
      <dc:creator>thabo2g5</dc:creator>
      <dc:date>2017-06-23T11:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347237#M829370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you using this?&lt;/P&gt;&lt;P&gt;What are the dimensions ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 11:55:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347237#M829370</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-06-23T11:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347238#M829371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dimensions : applications &amp;amp; year &lt;/P&gt;&lt;P&gt;expression :&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px; background-color: #f2f2f2;"&gt;(20*660(minutes)) + (4*430(min)) + (4*160(min))&lt;/SPAN&gt; (total minutes for the month)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 12:30:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347238#M829371</guid>
      <dc:creator>thabo2g5</dc:creator>
      <dc:date>2017-06-23T12:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value constant</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347239#M829372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide sample app here to work.. or sample data. Unable to understand your expression now.&lt;/P&gt;&lt;P&gt;Why are you using 20 ,4 ,4 in expression as static?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2017 12:50:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-keep-the-value-constant/m-p/1347239#M829372</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-06-23T12:50:30Z</dc:date>
    </item>
  </channel>
</rss>

