<?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: Link Table Problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097322#M1253775</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The DATE field will not link correctly in the above script. You need to add floor() and frac() functions to the date and time expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;date(&lt;STRONG&gt;Floor&lt;/STRONG&gt;(Timestamp#(MOVE_TIME, 'DD.MM.YYYY hh:mm: ss')),'DD/MM/YYYY') as DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;time(&lt;STRONG&gt;Frac&lt;/STRONG&gt;(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss')),'hh:mm:ss') as TIME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and ditto with &lt;EM&gt;PERIOD_START)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The Calendar contains pure dates, so you need to link on pure date values. The format functions Date() and Time() do not convert the underlying values (on which the link happens), they only affect the display format.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 06 Mar 2016 10:29:21 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2016-03-06T10:29:21Z</dc:date>
    <item>
      <title>Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097317#M1253766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help in making a link table. I have two tables with different dates like MOVE_TIME,ARRIVAL_TIME and PERIOD_START and based on these dates I have to generate reports. But how will I make a link table to do that. Please advise Tables are attached. This is urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097317#M1253766</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097318#M1253768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H Pradeep, Try to concatenate the below fields &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;MODEL_ID&lt;/TD&gt;&lt;TD&gt;EQUIPMENT_NAME&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;so that sythetic keys will not created, Or else let me know exact you requirement, so that we can associate the two tables, i think concatenate will work,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Mar 2016 06:29:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097318#M1253768</guid>
      <dc:creator>hareeshkumar_gv</dc:creator>
      <dc:date>2016-03-06T06:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097319#M1253770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have broken down your &lt;EM&gt;MOVE_TIME,&lt;EM&gt;ARRIVAL_TIME &amp;amp; &lt;EM&gt;PERIOD_START&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt; to Separate DATE &amp;amp; TIME Field as Timestamp field occupies more space and also linking on Timestamp field is not advisable. So I have done linking on DATE field which you can use to filter the TIME as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Data:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD MODEL_ID, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_ID, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUCT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ROUTE_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STEP, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EQUIPMENT_GROUP_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EQUIPMENT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss'),'DD/MM/YYYY') as DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss'),'hh:mm:ss') as TIME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_SIZE, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STAGE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MOVE_TIME' as DateType,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NA' as CYCLE_TIME_TOTAL&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[TABLE.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is TABLE1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Concatenate(Data)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD MODEL_ID, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_ID, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUCT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ROUTE_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STEP, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EQUIPMENT_GROUP_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EQUIPMENT_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS_NAME, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(Timestamp#(ARRIVAL_TIME,'DD.MM.YYYY hh:mm:ss'),'DD/MM/YYYY') as DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time(Timestamp#(ARRIVAL_TIME,'DD.MM.YYYY hh:mm:ss'),'hh:mm:ss') as TIME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOT_SIZE, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STAGE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ARRIVAL_TIME' as DateType,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NA' as CYCLE_TIME_TOTAL&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[TABLE.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is TABLE1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Concatenate(Data)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD MODEL_ID, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EQUIPMENT_NAME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(Timestamp#(PERIOD_START,'YYYY-MM-DD hh:mm:ss'),'DD/MM/YYYY') as DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(Timestamp#(PERIOD_START,'YYYY-MM-DD hh:mm:ss'),'DD/MM/YYYY') as TIME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CYCLE_TIME_TOTAL,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'PERIOD_START' as DateType&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[TABLE.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is TABLE2);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Calender:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DATE, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Year(DATE) as Year,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;month(DATE) as Month,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Week(DATE) as Week;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Distinct DATE&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Data;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Mar 2016 06:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097319#M1253770</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-06T06:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097320#M1253772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Thanks for replying. My problem is that I have 4-5 tables and I have concatenated like you have &lt;/P&gt;&lt;P&gt;suggested. But I am not getting proper link to the table. So I have tried to create a link table and do &lt;/P&gt;&lt;P&gt;the data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please guide me how to create a link table for these two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Sun, 06 Mar 2016 12:14:39 +0530 Kush141087  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Kush141087 in QlikView Deployment - View the full discussion&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;You can do something like below.I have broken down your MOVE_TIME,ARRIVAL_TIME &amp;amp; PERIOD_START to &lt;/P&gt;&lt;P&gt;Separate DATE &amp;amp; TIME Field as Timestamp field occupies more space and also linking on Timestamp field &lt;/P&gt;&lt;P&gt;is not advisable. So I have done linking on DATE field which you can use to filter the TIME as &lt;/P&gt;&lt;P&gt;well.Data:LOAD MODEL_ID,  LOT_NAME,  LOT_ID,  PRODUCT_NAME,  ROUTE_NAME,  STEP,  EQUIPMENT_GROUP_NAME,  &lt;/P&gt;&lt;P&gt;EQUIPMENT_NAME,  PROCESS_NAME,  date(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss'),'DD/MM/YYYY') as DATE, &lt;/P&gt;&lt;P&gt;time(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss'),'hh:mm:ss') as TIME, LOT_SIZE,  STAGE, 'MOVE_TIME' as &lt;/P&gt;&lt;P&gt;DateType, 'NA' as CYCLE_TIME_TOTALFROM[TABLE.xlsx](ooxml, embedded labels, table is &lt;/P&gt;&lt;P&gt;TABLE1);Concatenate(Data)LOAD MODEL_ID,  LOT_NAME,  LOT_ID,  PRODUCT_NAME,  ROUTE_NAME,  STEP,  &lt;/P&gt;&lt;P&gt;EQUIPMENT_GROUP_NAME,  EQUIPMENT_NAME,  PROCESS_NAME,  date(Timestamp#(ARRIVAL_TIME,'DD.MM.YYYY &lt;/P&gt;&lt;P&gt;hh:mm:ss'),'DD/MM/YYYY') as DATE, time(Timestamp#(ARRIVAL_TIME,'DD.MM.YYYY hh:mm:ss'),'hh:mm:ss') as &lt;/P&gt;&lt;P&gt;TIME, LOT_SIZE,  STAGE, 'ARRIVAL_TIME' as DateType, 'NA' as CYCLE_TIME_TOTALFROM[TABLE.xlsx](ooxml, &lt;/P&gt;&lt;P&gt;embedded labels, table is TABLE1);Concatenate(Data)LOAD MODEL_ID,  EQUIPMENT_NAME, date(Timestamp#&lt;/P&gt;&lt;P&gt;(PERIOD_START,'YYYY-MM-DD hh:mm:ss'),'DD/MM/YYYY') as DATE, date(Timestamp#(PERIOD_START,'YYYY-MM-DD &lt;/P&gt;&lt;P&gt;hh:mm:ss'),'DD/MM/YYYY') as TIME, CYCLE_TIME_TOTAL, 'PERIOD_START' as DateTypeFROM[TABLE.xlsx](ooxml, &lt;/P&gt;&lt;P&gt;embedded labels, table is TABLE2);Calender:loadDATE, Year(DATE) as Year,month(DATE) as Month,Week(DATE) &lt;/P&gt;&lt;P&gt;as Week;LOAD Distinct DATEResident Data;&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Mar 2016 09:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097320#M1253772</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-06T09:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097321#M1253774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure how you are linking your tables.. Can you share the script which you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Mar 2016 10:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097321#M1253774</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-06T10:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097322#M1253775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The DATE field will not link correctly in the above script. You need to add floor() and frac() functions to the date and time expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;date(&lt;STRONG&gt;Floor&lt;/STRONG&gt;(Timestamp#(MOVE_TIME, 'DD.MM.YYYY hh:mm: ss')),'DD/MM/YYYY') as DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;time(&lt;STRONG&gt;Frac&lt;/STRONG&gt;(Timestamp#(MOVE_TIME,'DD.MM.YYYY hh:mm:ss')),'hh:mm:ss') as TIME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and ditto with &lt;EM&gt;PERIOD_START)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The Calendar contains pure dates, so you need to link on pure date values. The format functions Date() and Time() do not convert the underlying values (on which the link happens), they only affect the display format.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Mar 2016 10:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097322#M1253775</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2016-03-06T10:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097323#M1253778</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 am sharing my script. The problem is in link key I think but am not able to correct it. In equipment &lt;/P&gt;&lt;P&gt;group selection only one equipment group should come but here many equipment group is coming. Please &lt;/P&gt;&lt;P&gt;help. This is very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Sun, 06 Mar 2016 15:41:43 +0530 Kush141087  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Kush141087 in QlikView Deployment - View the full discussion&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;I am not sure how you are linking your tables.. Can you share the script which you are using?&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 06:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097323#M1253778</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T06:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097324#M1253780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kush&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do something I have already sent you scrambled data file test.qvw for your information and doing &lt;/P&gt;&lt;P&gt;the needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Sun, 06 Mar 2016 15:41:43 +0530 Kush141087  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Kush141087 in QlikView Deployment - View the full discussion&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;I am not sure how you are linking your tables.. Can you share the script which you are using?&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 07:41:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097324#M1253780</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T07:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097325#M1253781</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;Please find the data model and the application attached. My problem is while selecting the equipment &lt;/P&gt;&lt;P&gt;group button data is not showing properly. I have created Link Table and think that something is wrong &lt;/P&gt;&lt;P&gt;with the composite keys I have made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Sun, 06 Mar 2016 16:58:12 +0530 hareesh kumar  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from hareesh kumar in QlikView Deployment - View the full discussion&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;H Pradeep, Try to concatenate the below fields MODEL_IDEQUIPMENT_NAMEso that sythetic keys will not &lt;/P&gt;&lt;P&gt;created, Or else let me know exact you requirement, so that we can associate the two tables, i think &lt;/P&gt;&lt;P&gt;concatenate will work,&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097325#M1253781</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T08:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097326#M1253782</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;Can you give an example, what selection you are doing and what output you are getting with what output you are looking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097326#M1253782</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2016-03-08T08:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097327#M1253783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its a hierarchical type of data. On selection of Lot Type all product group will be displayed under that lot type. on selection of Product Group all the products will be displayed under that product group and so on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:59:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097327#M1253783</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T08:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097328#M1253784</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;In&amp;nbsp; the equipment charts, remove the " EquipmentGroupId= "from the expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097328#M1253784</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2016-03-08T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097329#M1253785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the equipment charts there is not equipmentgroupid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Tue, 08 Mar 2016 14:35:06 +0530 Kaushik Solanki  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Kaushik Solanki in QlikView Deployment - View the full discussion&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;Hi,In the equipment charts, remove the " EquipmentGroupId= "from the expressions.Regards,Kaushik &lt;/P&gt;&lt;P&gt;Solanki&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097329#M1253785</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097330#M1253786</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;sum({&amp;lt;TranDate={'&amp;gt;=$(vPeriodFrom)&amp;lt;=$(vPeriodTo)'}, EquipmentGroupId=&amp;gt;} T2.LOT_SIZE_MOVE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above is the expression which I see in your equipment charts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am asking you to remove &lt;SPAN style="font-size: 13.3333px;"&gt;, EquipmentG&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;roupId= So your expression should be&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;sum({&amp;lt;TranDate={'&amp;gt;=$(vPeriodFrom)&amp;lt;=$(vPeriodTo)'}&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;&amp;gt;} T2.LOT_SIZE_MOVE)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;Kaushik Solanki&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097330#M1253786</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2016-03-08T09:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Link Table Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097331#M1253787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this expression is for equipment group, and I have done that but there is no effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Tue, 08 Mar 2016 14:49:07 +0530 Kaushik Solanki  wrote&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;                                                                                Link Table Problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Kaushik Solanki in QlikView Deployment - View the full discussion&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;Hi,sum({} T2.LOT_SIZE_MOVE)Above is the &lt;/P&gt;&lt;P&gt;expression which I see in your equipment charts.I am asking you to remove , EquipmentGroupId= So your &lt;/P&gt;&lt;P&gt;expression should besum({} T2.LOT_SIZE_MOVE)&lt;/P&gt;&lt;P&gt;&amp;gt;Regards,Kaushik Solanki&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&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;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	Reply to this message by replying to this email, or go to the message on Qlik Community&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;	Start a new discussion in QlikView Deployment by email or at Qlik Community&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;	&lt;/P&gt;&lt;P&gt;	Following Link Table Problem in these streams:&lt;/P&gt;&lt;P&gt;     Inbox&lt;/P&gt;&lt;P&gt;                                                                                © 1993-2016 QlikTech International AB  | &lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;            Copyright &amp;amp; Trademarks | Privacy | Terms of Use | Software EULA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Table-Problem/m-p/1097331#M1253787</guid>
      <dc:creator>pkpandey</dc:creator>
      <dc:date>2016-03-08T09:59:30Z</dc:date>
    </item>
  </channel>
</rss>

