<?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 Average column of an expression without invalid dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223154#M75689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi fabio,&lt;/P&gt;&lt;P&gt;Can You Please clarify the Query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Jul 2010 11:31:09 GMT</pubDate>
    <dc:creator>sunil2288</dc:creator>
    <dc:date>2010-07-14T11:31:09Z</dc:date>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223153#M75688</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;I have a "simple" questionfor you all:&lt;/P&gt;&lt;P&gt;I have to calculate the average value for an expression (let's call it "budget") on a time frame.&lt;/P&gt;&lt;P&gt;I have a calendar dimension table, from 01-01-2009 to 12-31-2011, which has to be fully loaded into the dashboard. The problem comes because I have budget values from 07-01-2010 to today. The average, therefore, is not calculated in this 2 weeks frame, but in the whole calendar frame.&lt;/P&gt;&lt;P&gt;How can I fix this? Is it possible to add a column for the average calculated with an expression?&lt;/P&gt;&lt;P&gt;I hope to have been clear.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 11:15:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223153#M75688</guid>
      <dc:creator />
      <dc:date>2010-07-14T11:15:33Z</dc:date>
    </item>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223154#M75689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi fabio,&lt;/P&gt;&lt;P&gt;Can You Please clarify the Query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 11:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223154#M75689</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-07-14T11:31:09Z</dc:date>
    </item>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223155#M75690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;here is the query to populate the QVDs.&lt;/P&gt;&lt;P&gt;&lt;B&gt;d_calendario&lt;/B&gt;:&lt;BR /&gt;select calendario_id, calendario_giorno as cal_giorno, calendario_dd as cal_dd, calendario_mm as cal_mm, calendario_yyyy as cal_yyyy, calendario_nomemese as cal_nomemese, upper(left(calendario_giornosettimana,3)) as cal_giornosettimana, calendario_giornosettimananumero as cal_giornosettimananumero from dim_calendario where year(calendario_giorno)&amp;lt;=year(getdate())+1 order by calendario_giorno;&lt;BR /&gt;Store d_calendario into [qvd\assenteismo\d_calendario.qvd];&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;f_turnistica&lt;/B&gt;:&lt;BR /&gt;SELECT&lt;BR /&gt; calendario_id,&lt;BR /&gt; turno_presenza_teorica,&lt;BR /&gt; turno_permesso,&lt;BR /&gt; turno_strao,&lt;BR /&gt; CASE WHEN (giustificativo_macro IS NULL) THEN 'PRESENTE' ELSE giustificativo_macro END giustificativo_macro,&lt;BR /&gt; CASE WHEN (giustificativo_testata IS NULL) THEN 'PRESENTE' ELSE giustificativo_testata END giustificativo_testata,&lt;BR /&gt; CASE WHEN (giustificativo_dettaglio IS NULL) THEN 'PRESENTE'&lt;BR /&gt; WHEN (giustificativo_dettaglio = 'SUPPORTO BACKOFFICE') THEN 'PRESENTE'&lt;BR /&gt; WHEN (giustificativo_dettaglio = 'ALTRO') THEN 'PRESENTE'&lt;BR /&gt; ELSE giustificativo_dettaglio&lt;BR /&gt; END giustificativo_dettaglio,&lt;BR /&gt; turno_activity,&lt;BR /&gt; turno_contratto,&lt;BR /&gt; turno_centro&lt;BR /&gt;FROM&lt;BR /&gt; fc_turnistica&lt;BR /&gt; INNER JOIN dim_calendario ON fc_turnistica.turno_calendario = dim_calendario.calendario_id&lt;BR /&gt; LEFT OUTER JOIN dim_giustificativi ON dim_giustificativi.giustificativo_id=fc_turnistica.turno_giustificativo&lt;BR /&gt;WHERE turno_activity&amp;lt;&amp;gt;'Churn' and turno_activity&amp;lt;&amp;gt;'POLO BKL';&lt;BR /&gt;&lt;BR /&gt;Store f_turnistica into [qvd\assenteismo\f_turnistica.qvd];&lt;/P&gt;&lt;P&gt;the &lt;B&gt;d_calendario&lt;/B&gt; is the dimension for the dates. &lt;B&gt;&lt;BR /&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 11:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223155#M75690</guid>
      <dc:creator />
      <dc:date>2010-07-14T11:42:02Z</dc:date>
    </item>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223156#M75691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey fabio,&lt;/P&gt;&lt;P&gt;For Which two weeks frame you are asking for avarage..&lt;/P&gt;&lt;P&gt;Pls explain it...&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Suneel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 12:00:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223156#M75691</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-07-14T12:00:05Z</dc:date>
    </item>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223157#M75692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Suneel, i will explain, i also attach the file i'm developing.&lt;/P&gt;&lt;P&gt;You can see, in the main table "Trend assenteismo" the last column "EOM", if there are no selections the average is wrong, because I want it to be calculated only for the values i have on the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 12:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223157#M75692</guid>
      <dc:creator />
      <dc:date>2010-07-14T12:19:49Z</dc:date>
    </item>
    <item>
      <title>Average column of an expression without invalid dates</title>
      <link>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223158#M75693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fabio,&lt;/P&gt;&lt;P&gt;I saw your application .&lt;/P&gt;&lt;P&gt;In your application you just go to the trend assentismo properties then to number tab and Number format settings make it as Expression default..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 10:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-column-of-an-expression-without-invalid-dates/m-p/223158#M75693</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-07-15T10:19:18Z</dc:date>
    </item>
  </channel>
</rss>

