<?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 Adding dates then values to null values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584164#M216896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read a couple of articles on this topic and also experimented within the load script but don't seem to be able to get it quite right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table 'MonthTargets' taken from a QVD with the fields Location, Month, Year,Product &amp;amp; MthTarget from which I have generated a TargetDate Field by 'MakeDate(Year,Month) AS TargetDate' which returns a date of 01/MM/YYYY - but I want to create weekly targets based on the monthly figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a date between the 1st of each month and End and also add the MthTarget to each of those date fields. I have tried using the previous function from a previous post which is :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loadcalcs: &lt;/P&gt;&lt;P&gt;Load *,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(previous(Location)=Location,previous(TargetDate)) as PrevDate,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; if(previous(Location)=Location,previous(MthTarget )) as PrevVal1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(MonthlyTargets)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Location,&amp;nbsp; &lt;/P&gt;&lt;P&gt;TargetDate - IterNo() as TargetDate, &lt;/P&gt;&lt;P&gt;PrevVal1 as MthTarget &lt;/P&gt;&lt;P&gt;Resident MonthlyTargets&lt;/P&gt;&lt;P&gt;while TargetDate - IterNo() &amp;gt; PrevDate&lt;/P&gt;&lt;P&gt;order by Location, TargetDate desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop field PrevDate, PrevVal1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution on looks close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also attempted one using Peek as described in the technical brief by Henric - 'Generating Missing Data' but end up with 14m records being added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would really appreciate any detailed help on where I am going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Mar 2014 15:24:50 GMT</pubDate>
    <dc:creator>pauledrich</dc:creator>
    <dc:date>2014-03-17T15:24:50Z</dc:date>
    <item>
      <title>Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584164#M216896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read a couple of articles on this topic and also experimented within the load script but don't seem to be able to get it quite right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table 'MonthTargets' taken from a QVD with the fields Location, Month, Year,Product &amp;amp; MthTarget from which I have generated a TargetDate Field by 'MakeDate(Year,Month) AS TargetDate' which returns a date of 01/MM/YYYY - but I want to create weekly targets based on the monthly figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a date between the 1st of each month and End and also add the MthTarget to each of those date fields. I have tried using the previous function from a previous post which is :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loadcalcs: &lt;/P&gt;&lt;P&gt;Load *,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(previous(Location)=Location,previous(TargetDate)) as PrevDate,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; if(previous(Location)=Location,previous(MthTarget )) as PrevVal1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(MonthlyTargets)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Location,&amp;nbsp; &lt;/P&gt;&lt;P&gt;TargetDate - IterNo() as TargetDate, &lt;/P&gt;&lt;P&gt;PrevVal1 as MthTarget &lt;/P&gt;&lt;P&gt;Resident MonthlyTargets&lt;/P&gt;&lt;P&gt;while TargetDate - IterNo() &amp;gt; PrevDate&lt;/P&gt;&lt;P&gt;order by Location, TargetDate desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop field PrevDate, PrevVal1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution on looks close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also attempted one using Peek as described in the technical brief by Henric - 'Generating Missing Data' but end up with 14m records being added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would really appreciate any detailed help on where I am going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 15:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584164#M216896</guid>
      <dc:creator>pauledrich</dc:creator>
      <dc:date>2014-03-17T15:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584165#M216897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone able to help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584165#M216897</guid>
      <dc:creator>pauledrich</dc:creator>
      <dc:date>2014-03-17T16:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584166#M216898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Paul,&lt;/P&gt;&lt;P&gt;Would it be possible to attach a sample file with the tables you have and how you want the resultant table/results to look like. It will be helpful in addressing the issue. &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584166#M216898</guid>
      <dc:creator />
      <dc:date>2014-03-17T16:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584167#M216899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 675px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" colspan="5" height="20" style="text-align: center;" width="331"&gt;Current&lt;/TD&gt;&lt;TD class="xl65" colspan="5" style="text-align: center;" width="331"&gt;Desired&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="20" style="border-top: none;"&gt;Location&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Month&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Year&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Target&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Date&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none;"&gt;Location&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Month&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Year&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Target&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/01/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/02/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;02/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/03/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;03/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;4&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/04/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;04/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;5&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/05/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;05/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;6&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/06/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;06/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/07/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;07/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;8&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/08/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;08/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;9&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/09/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;09/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/10/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;10/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;11&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/11/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;11/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;12&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;01/12/2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2014&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1000&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;12/01/2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" colspan="5"&gt;Continue through to year 31/12/2014&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see location 1 has a target on the 1st of each month - I would like to have the monthly target for each day of the month shown in a row for each date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this Dashboard I am using one master calendar linked to various fact tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:23:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584167#M216899</guid>
      <dc:creator>pauledrich</dc:creator>
      <dc:date>2014-03-17T16:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584168#M216900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like attached? Its a little cheesy solution but it might work for you from my understanding of your requirement.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:41:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584168#M216900</guid>
      <dc:creator />
      <dc:date>2014-03-17T16:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Adding dates then values to null values</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584169#M216901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;I changed your Target just to check the result&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;Let vMinDate = num(date('01/01/2014'));&lt;/P&gt;&lt;P&gt;Let vMaxDate = num(date('31/12/2014'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD Date, num(Month(Date)) as Month, Year(Date) as Year;&lt;/P&gt;&lt;P&gt;Load Date(recno()+$(vMinDate)-1) as Date&lt;/P&gt;&lt;P&gt;Autogenerate $(vMaxDate) - $(vMinDate) +1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Location, Month, Year, Target, DateSource&lt;/P&gt;&lt;P&gt;1, 1, 2014, 1001, 01/01/2014&lt;/P&gt;&lt;P&gt;1, 2, 2014, 1002, 01/02/2014&lt;/P&gt;&lt;P&gt;1, 3, 2014, 1003, 01/03/2014&lt;/P&gt;&lt;P&gt;1, 4, 2014, 1004, 01/04/2014&lt;/P&gt;&lt;P&gt;1, 5, 2014 ,1005, 01/05/2014&lt;/P&gt;&lt;P&gt;1, 6, 2014 ,1006, 01/06/2014&lt;/P&gt;&lt;P&gt;1, 7, 2014, 1007, 01/07/2014&lt;/P&gt;&lt;P&gt;1, 8, 2014, 1008, 01/08/2014&lt;/P&gt;&lt;P&gt;1, 9, 2014, 1009, 01/09/2014&lt;/P&gt;&lt;P&gt;1, 10, 2014, 1010, 01/10/2014&lt;/P&gt;&lt;P&gt;1, 11, 2014, 1011, 01/11/2014&lt;/P&gt;&lt;P&gt;1, 12, 2014, 1012, 01/12/2014&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Table) load Year, Month, Date Resident Calendar;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Field Year, Month From Table; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 18:50:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-dates-then-values-to-null-values/m-p/584169#M216901</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-03-17T18:50:18Z</dc:date>
    </item>
  </channel>
</rss>

