<?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: Store Date field from multiple tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846646#M297186</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you post an image of your data model?&lt;/P&gt;&lt;P&gt;and post your script also please &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2015 10:04:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-04-16T10:04:08Z</dc:date>
    <item>
      <title>Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846639#M297179</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 have four tables in load script and each table linked with common field %date. I want to store this field in a table, so that I can create a master calendar, My source looks like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;T1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Load %date,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;CustData1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;From&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Data1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;T2:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Load %date,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;CustData2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;From&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Data2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;T3:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Load %date,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;CustData3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;From&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Data3;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest me a load script for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846639#M297179</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-04-16T09:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846640#M297180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;noconcatenate Load&lt;/P&gt;&lt;P&gt;%date,&lt;/P&gt;&lt;P&gt;year(%date) as Year,&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;resident T1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate Load &lt;/P&gt;&lt;P&gt;%date,&lt;/P&gt;&lt;P&gt;year(%date) as Year,&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;resident T2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate Load &lt;/P&gt;&lt;P&gt;%date,&lt;/P&gt;&lt;P&gt;year(%date) as Year,&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;resident T3:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846640#M297180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-16T09:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846641#M297181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;you need to take all distinct %date values from all tables into a new table.&lt;/P&gt;&lt;P&gt;Then take min and max of %date from that table&lt;/P&gt;&lt;P&gt;and then based on min max create a master calendar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this :&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-6662"&gt;The Fastest Dynamic Calendar Script (Ever)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846641#M297181</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2015-04-16T09:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846642#M297182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tamil, to create the master calendar you'll need first of all the min and max dates, you can obtain them using:&lt;/P&gt;&lt;P&gt;MaxMinDates:&lt;/P&gt;&lt;P&gt;LOAD Max(Datetmp) as MaxDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min(Datetmp) as MinDate;&lt;/P&gt;&lt;P&gt;LOAD FieldValue('%date', IterNo()) as Datetmp&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While IterNo()&amp;lt;=FieldValueCount('%date');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMinDate=FieldValue('MinDate', 1);&lt;/P&gt;&lt;P&gt;LET vMaxDate=FieldValue('MaxDate', 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table MaxMinDates;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:44:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846642#M297182</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-04-16T09:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846643#M297183</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;So you have a common field called %date which you want to store (I believe as QVD) and create a master calendar from it?&lt;/P&gt;&lt;P&gt;Well if that's what you want to achieve here's how to store the field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE %date FROM T1 INTO Date.qvd(qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll have to create 3 ( in your case from the number of table in your example) and then concatenate all the date qvd file into 1 table (if you want store it as qvd again) to facilitate creation of master calendar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But there might be a simpler way, which might just be to use the calendar suggested above and link your %date to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846643#M297183</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-04-16T09:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846644#M297184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried your script but it showing "&lt;STRONG&gt;MaxMinDates &amp;lt;&amp;lt; AUTOGENERATE(1) 0 lines fetched&lt;/STRONG&gt;". I guess first we need to store all the %date' field values from all the tables to separate tables. Can you tell me how to do that.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:58:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846644#M297184</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-04-16T09:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846645#M297185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got field no found error. Any reason?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846645#M297185</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-04-16T09:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846646#M297186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you post an image of your data model?&lt;/P&gt;&lt;P&gt;and post your script also please &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 10:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846646#M297186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-16T10:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846647#M297187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Above one is sample one. Please see the original script and attached data model screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;QUALIFY '*';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UNQUALIFY '%*';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;//*********************************************************&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;Prod_Details:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CmpDt as [%Date],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(CmpDt) as [Day],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(CmpDt) as [Month],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(CmpDt) as [Year]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM ProductivityDetails;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//*********************************************************&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;Daily_Details:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CompletedDateTime as [%Date], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(CompletedDateTime) as [Day],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(CompletedDateTime) as [Month],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(CompletedDateTime) as [Year]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM DailyDetails;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;//*********************************************************&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;Quality_Details:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MailCompDate as [%Date], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(MailCompDate) as [Day],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(MailCompDate) as [Month],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(MailCompDate) as [Year]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM QualityDetails;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;//*********************************************************&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;Quality_Report_Details:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;STRONG&gt;SQL SELECT *,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MailCompDate as [%Date], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(MailCompDate) as [Day],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(MailCompDate) as [Month],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(MailCompDate) as [Year] &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM QualityReportDetails;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 10:14:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846647#M297187</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-04-16T10:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846648#M297188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, Good idea. I'll give a try and let you know the result. I am waiting for Rudolf's answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 10:16:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846648#M297188</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-04-16T10:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Store Date field from multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846649#M297189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tamil, if the field is called %date in all tables, the FieldValue() and FieldValueCount() functions will count the values in all the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I saw in your recently posted script the name is %Date (with uppercase 'D'), change '%date' to your field name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 10:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-Date-field-from-multiple-tables/m-p/846649#M297189</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-04-16T10:27:47Z</dc:date>
    </item>
  </channel>
</rss>

