<?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 Two Files Loaded (To be used as dimension) in Water Cooler</title>
    <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529818#M8200</link>
    <description>&lt;P&gt;I have two files with the exact data fields (one is extracted on Jan 2018, another on Feb 2018). We would like to put the dates of extraction as the y-axis on the grid chart. What should I do, attached is the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: The fields are much more than the two attached and some of the field might be used for the colour of the bubble chart. Additionally, we would like to extend this to a 12 month trend.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jan 2019 06:21:33 GMT</pubDate>
    <dc:creator>hykal1993</dc:creator>
    <dc:date>2019-01-14T06:21:33Z</dc:date>
    <item>
      <title>Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529818#M8200</link>
      <description>&lt;P&gt;I have two files with the exact data fields (one is extracted on Jan 2018, another on Feb 2018). We would like to put the dates of extraction as the y-axis on the grid chart. What should I do, attached is the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: The fields are much more than the two attached and some of the field might be used for the colour of the bubble chart. Additionally, we would like to extend this to a 12 month trend.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 06:21:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529818#M8200</guid>
      <dc:creator>hykal1993</dc:creator>
      <dc:date>2019-01-14T06:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529864#M8202</link>
      <description>&lt;P&gt;If you want to extract the period from the file name you can use the FileName() function in the load statement. Something like&lt;/P&gt;&lt;PRE&gt;MyData:
LOAD
   ...lots of fields...,
   Date#(SubField(FileName(),'.',1),'MMM YYYY') as Period
FROM
    [D:\MyExcelFiles\*.xlsx] (ooxml, ...etc);&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jan 2019 07:21:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529864#M8202</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-01-15T07:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529916#M8206</link>
      <description>&lt;P&gt;Anything wrong with my code? It seems off and there's an error.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;LOAD ID, 
     [Risk Type],
     Date#(SubFile(Jan 2018.xlsx,'.',1),'MMM YYYY') as Period
     
FROM
[C:\Users\haab\Desktop\Jan 2018.xlsx]
(ooxml, embedded labels, table is Sheet1);&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Jan 2019 10:31:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529916#M8206</guid>
      <dc:creator>hykal1993</dc:creator>
      <dc:date>2019-01-14T10:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529955#M8207</link>
      <description>Try using the FileName() function instead of the name of the file.</description>
      <pubDate>Mon, 14 Jan 2019 11:39:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1529955#M8207</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-01-14T11:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530253#M8224</link>
      <description>&lt;P&gt;Still there's an error.&lt;/P&gt;&lt;PRE&gt;LOAD ID,
     [Risk Type],
     Date#(SubFile(FileName(),'.',1),'MMM YYYY') as Period
     
FROM
[C:\Users\haab\Desktop\Feb 2018.xlsx]
(ooxml, embedded labels, table is Sheet1);&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jan 2019 06:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530253#M8224</guid>
      <dc:creator>hykal1993</dc:creator>
      <dc:date>2019-01-15T06:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530274#M8227</link>
      <description>&lt;P&gt;Oops, typo. Try SubField instead of SubFile.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 07:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530274#M8227</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-01-15T07:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Two Files Loaded (To be used as dimension)</title>
      <link>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530283#M8230</link>
      <description>&lt;PRE&gt;LOAD ID, 
     [Risk Type],
     Date#(SubField(FileName(),'.',1),'MMM YYYY') as Period
FROM
[C:\Users\haab\Desktop\Jan 2018.xlsx]
(ooxml, embedded labels, table is Sheet1);

LOAD ID as [Feb ID], 
     [Risk Type] as [Feb Risk Type],
     Date#(SubField(FileName(),'.',1),'MMM YYYY') as Period
FROM
[C:\Users\haab\Desktop\Feb 2018.xlsx]
(ooxml, embedded labels, table is Sheet1);&lt;/PRE&gt;&lt;P&gt;Thanks, now there's no longer errors. However, I'm trying to build Grid Chart and the period (Y-Axis) is only showing Jan 2018. The Feb 2018 is missing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 07:52:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/Two-Files-Loaded-To-be-used-as-dimension/m-p/1530283#M8230</guid>
      <dc:creator>hykal1993</dc:creator>
      <dc:date>2019-01-15T07:52:04Z</dc:date>
    </item>
  </channel>
</rss>

