<?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: Combining 2 datefields into 1 in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136804#M9600</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found a way. Just created in the main table the field: &lt;/P&gt;&lt;P&gt;Month (Load_Date) as CombinedMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the fuel table the field:&lt;/P&gt;&lt;P&gt;Month (FuelDate) as CombinedMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates a synthetic key but i guess this is not bad in my case. The results are correct anyway. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2018 12:44:14 GMT</pubDate>
    <dc:creator>pascaldijkshoor</dc:creator>
    <dc:date>2018-08-14T12:44:14Z</dc:date>
    <item>
      <title>Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136792#M9588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people, I would like to combine 2 datefields into 1 datefield. I will explain the situation below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am loading 2 tables. The main table contains the date field "Load_Date". This datefield refers to the loading date of a shipment number. The main table also contains which Asset transported the shipment. I am calculating the total revenue per asset per month based on the main table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second table is my fuel costs table. This table contains the licenseplate, the fuel costs and FuelDate, so i can calculate the fuel costs per asset per month based on this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main table and fuel table are linked together based on the license plate of the asset. So i know per asset how much revenue is on it and what the fuel costs are. Only i have got 2 different date fields, the Load_Date for the main table and the FuelDate for the fuel costs table. The different date fields make it impossible to create a chart with revenue and fuel costs per asset per month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i combine both date fields so i can create this chart?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current script is posted below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'Chainware11g';&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG style="color: #008000;"&gt;MainTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD cuactk as Key,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curem1 as LicensePlate,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuasst as AssetType,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curem1 as Activity_Asset_Details,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jrasst as AssetNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsrido as Tripnumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacty as Activity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdist as Activity_Distance,&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsuitd as Load_Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trip_loadindex,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; shipment_loadindex,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dosvlg as ShipmentNumber;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;cuacta. "cuasst",&lt;/P&gt;&lt;P&gt;cuacta. "curem1",&lt;/P&gt;&lt;P&gt;&amp;nbsp; cuacta. "jrasst",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacta. "cuactk",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "cuactk",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacts. "cuactk",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "cuacty",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsaasd",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsaaed",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsdist",&lt;/P&gt;&lt;P&gt;cuactt. "tsloai" as "trip_loadindex",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsrido",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacts. "dosvlg", &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "dosvlg",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsstts",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsuitd",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsloai" as "shipment_loadindex"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM "ICJDR".&lt;/P&gt;&lt;P&gt;"cuf_cuactt" cuactt,&lt;/P&gt;&lt;P&gt;"cuf_cuacta" cuacta,&lt;/P&gt;&lt;P&gt;"cuf_cuacts" cuacts,&lt;/P&gt;&lt;P&gt;"cef_tsdsmd" tsdsmd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;cuactt. "cuactk" = cuacta. "cuactk"&lt;/P&gt;&lt;P&gt;AND cuactt. "cuactk" = cuacts. "cuactk"&lt;/P&gt;&lt;P&gt;AND cuacts. "dosvlg" = tsdsmd. "dosvlg"&lt;/P&gt;&lt;P&gt;AND cuacta. "cuasst" = 'driving unit'&lt;/P&gt;&lt;P&gt;AND cuactt. "cuacty" = 'Driving'&lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd."tsuitd" &amp;gt;= to_date('01-01-2018', 'DD-MM-YYYY');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;&lt;STRONG style=": ; color: #008000;"&gt;FuelTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "FuelDate",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "License Plate Short" as LicensePlate,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Code",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Name",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Net Euro Amount"&lt;/P&gt;&lt;P&gt;FROM [lib://Data_Qlik /Shell Fuel Report.xlsm]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is FuelReport);&lt;/P&gt;&lt;P&gt;&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>Tue, 14 Aug 2018 10:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136792#M9588</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T10:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136793#M9589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create Master calendar from the date field &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&amp;nbsp; from main table &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;and then use month from master &lt;SPAN style="font-size: 13.3333px;"&gt;calendar in your chart&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136793#M9589</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-14T10:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136794#M9590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LIB CONNECT TO 'Chainware11g';&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #339966;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #008000;"&gt;MainTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD cuactk as Key,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curem1 as LicensePlate,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuasst as AssetType,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curem1 as Activity_Asset_Details,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jrasst as AssetNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsrido as Tripnumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacty as Activity,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdist as Activity_Distance,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsuitd as Load_Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trip_loadindex,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; shipment_loadindex,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dosvlg as ShipmentNumber;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SELECT&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;cuacta. "cuasst",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;cuacta. "curem1",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; cuacta. "jrasst",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacta. "cuactk",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "cuactk",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacts. "cuactk",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "cuacty",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsaasd",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsaaed",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsdist",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;cuactt. "tsloai" as "trip_loadindex",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuactt. "tsrido",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cuacts. "dosvlg",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "dosvlg",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsstts",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsuitd",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd. "tsloai" as "shipment_loadindex"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM "ICJDR".&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"cuf_cuactt" cuactt,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"cuf_cuacta" cuacta,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"cuf_cuacts" cuacts,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"cef_tsdsmd" tsdsmd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;cuactt. "cuactk" = cuacta. "cuactk"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND cuactt. "cuactk" = cuacts. "cuactk"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND cuacts. "dosvlg" = tsdsmd. "dosvlg"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND cuacta. "cuasst" = 'driving unit'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND cuactt. "cuacty" = 'Driving'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp; tsdsmd."tsuitd" &amp;gt;= to_date('01-01-2018', 'DD-MM-YYYY');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #008000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FuelTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3366ff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "FuelDate",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "License Plate Short" as LicensePlate,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Code",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Name",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Net Euro Amount"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM [lib://Data_Qlik /Shell Fuel Report.xlsm]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is FuelReport);&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;SPAN style="font-size: 10pt;"&gt;/ Master calendar script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CalendarMaster:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) AS &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(J&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) AS CalendarDate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) AS Year,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) / 3) AS Quarter,&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) As Month,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) As Day,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) As Week;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Date(MinDate + IterNo() -1 ) AS &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date &lt;/STRONG&gt;While (MinDate + IterNo() - 1) &amp;lt;= Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) AS MinDate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3366ff;"&gt;Load_Date&lt;/STRONG&gt;) AS MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #008000;"&gt;MainTable&lt;/STRONG&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;Now use this month as a dimension in your chart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:19:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136794#M9590</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-14T10:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136795#M9591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;I do not know what you want in the chart at the end, but you can rename field&amp;nbsp; &lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;"FuelDate" to &lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;Load_Date &lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333333;"&gt;and &lt;/SPAN&gt;&lt;SPAN lang="en"&gt;concotenate &lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;FuelTable &lt;/STRONG&gt;&lt;/SPAN&gt; to&amp;nbsp; &lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;MainTable. &lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;So you get&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; one table with one DateField&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;MainTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD .................................;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (&lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;MainTable&lt;/STRONG&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;FuelTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "FuelDate" as &lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;Load_Date &lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "License Plate Short" as LicensePlate,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Code",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Product Name",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Net Euro Amount"&lt;/P&gt;&lt;P&gt;FROM [lib://Data_Qlik /Shell Fuel Report.xlsm]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is FuelReport);&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:33:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136795#M9591</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-14T10:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136796#M9592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. In your solution, how is the fuel date linked to the master calendar? With the master calendar month field, i would get the revenue per month, but for the fuel costs i would get the total fuel costs, because the costs are not linked to the master calendar dates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136796#M9592</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T10:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136797#M9593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because Main table and &lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #008000; background-color: #f2f2f2;"&gt;FuelTable are associated through the field&amp;nbsp; &lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #ff0000; background-color: #f2f2f2;"&gt;LicensePlate&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #008000; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #ff0000; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #008000; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #ff0000; background-color: #f2f2f2;"&gt;And Main table linked to calender table through the Load_Date&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #008000; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #ff0000; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #008000; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #ff0000; background-color: #f2f2f2;"&gt;IF you look at the table viewer you will see the associations &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136797#M9593</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-14T11:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136798#M9594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes but the licenseplate is no unique key, so the same licenseplate will occur in every load_date month. This means Qlik does not know in which load_date month specific fuel costs are made. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:23:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136798#M9594</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T11:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136799#M9595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but this solution does not work. I am getting zero values if i have load_date as a dimension and fuel costs as a measure. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:24:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136799#M9595</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T11:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136800#M9596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;licenseplate&amp;nbsp; is unique key &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;can you tell me how main table and fueltable link with each other&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:31:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136800#M9596</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-14T11:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136801#M9597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show the expression you use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:49:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136801#M9597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-14T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136802#M9598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for month i used Month(Load_Date) and for the fuel costs i used sum(Net Euro Amount). It gave me results for several months but for februari and march it showed 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 12:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136802#M9598</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T12:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136803#M9599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tables are linked on Licenseplate. Every truck has it's own unique license plate, only every truck will transport multiple shipments per month, so the licenseplate has multiple revenue lines per month. Also every truck will fuel multiple times per month, so the licenseplate has multiple fuel lines per month.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 12:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136803#M9599</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T12:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Combining 2 datefields into 1</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136804#M9600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found a way. Just created in the main table the field: &lt;/P&gt;&lt;P&gt;Month (Load_Date) as CombinedMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the fuel table the field:&lt;/P&gt;&lt;P&gt;Month (FuelDate) as CombinedMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates a synthetic key but i guess this is not bad in my case. The results are correct anyway. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 12:44:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-2-datefields-into-1/m-p/136804#M9600</guid>
      <dc:creator>pascaldijkshoor</dc:creator>
      <dc:date>2018-08-14T12:44:14Z</dc:date>
    </item>
  </channel>
</rss>

