<?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 Consolidating project dates to single line in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Consolidating-project-dates-to-single-line/m-p/2008268#M83404</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I was trying to modify some code like this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MappingTable:
Mapping
LOAD Keyword,
	 '/' &amp;amp; App &amp;amp; '\';
LOAD * INLINE [
    Keyword, App
    xxxxxx/A 1.1, .NET
    YYYYYY, APACHE
    ZZZZZ, OFFICE
];
Table:
LOAD H,
	 TextBetween(MapSubString('MappingTable', H), '/', '\') as App;
LOAD * INLINE [
    H
    sdfsd xxxxxx/A 1.1dsfdsf
    ERWRWWQYYYYYYAEWRA
    IOPIOPIZZZZZOIPOIO
];&lt;/LI-CODE&gt;
&lt;P&gt;What I need to do is reverse the tables.&lt;/P&gt;
&lt;P&gt;The first table will be a projects table&lt;/P&gt;
&lt;P&gt;The second table will be a [Kickoff Meeting Date] table&lt;/P&gt;
&lt;P&gt;The 3rd will be a [Draft 1] date&lt;/P&gt;
&lt;P&gt;The code above will put the project date in the Kickoff table and the Draft table&lt;/P&gt;
&lt;P&gt;but what I really want to do is put the Draft and Kickoff dates in the Project table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only thing I have to tie these together is the Hierarchy of the project&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;load inline [
ID,
Outline ID, Activity, Start Date
Project/A, 1,Project,1/1/2023
Project/A, 1.1 Document, 1/3/2023
Project/A, 1.1.1 Kickoff meeting,1/5/2023
Project/A, 1.1.1.1 Draft 1, 2/1/2023
Project/A, 1.1.1.2 Draft 2, 3/1/2023
Project/B, 1,Project,5/1/2022
Project/B, 1.1 Package, 6/3/2022
Project/B, 1.1.1 Document, 6/3/2022
Project/B, 1.1.1.1 Kickoff meeting,7/5/2022
Project B, 1.1.1.2 Shell, 6/15/2022
Project/B, 1.1.1.3 Draft 1, 8/1/2023
Project/B, 1.1.1.4 Draft 2, 9/1/2023
]&lt;/LI-CODE&gt;
&lt;P&gt;These dates could run 8 layers deep, I was hoping to not have nesting of applymaps that deep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thoughts&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Nov 2022 14:10:21 GMT</pubDate>
    <dc:creator>RogerG</dc:creator>
    <dc:date>2022-11-23T14:10:21Z</dc:date>
    <item>
      <title>Consolidating project dates to single line</title>
      <link>https://community.qlik.com/t5/App-Development/Consolidating-project-dates-to-single-line/m-p/2008268#M83404</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I was trying to modify some code like this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MappingTable:
Mapping
LOAD Keyword,
	 '/' &amp;amp; App &amp;amp; '\';
LOAD * INLINE [
    Keyword, App
    xxxxxx/A 1.1, .NET
    YYYYYY, APACHE
    ZZZZZ, OFFICE
];
Table:
LOAD H,
	 TextBetween(MapSubString('MappingTable', H), '/', '\') as App;
LOAD * INLINE [
    H
    sdfsd xxxxxx/A 1.1dsfdsf
    ERWRWWQYYYYYYAEWRA
    IOPIOPIZZZZZOIPOIO
];&lt;/LI-CODE&gt;
&lt;P&gt;What I need to do is reverse the tables.&lt;/P&gt;
&lt;P&gt;The first table will be a projects table&lt;/P&gt;
&lt;P&gt;The second table will be a [Kickoff Meeting Date] table&lt;/P&gt;
&lt;P&gt;The 3rd will be a [Draft 1] date&lt;/P&gt;
&lt;P&gt;The code above will put the project date in the Kickoff table and the Draft table&lt;/P&gt;
&lt;P&gt;but what I really want to do is put the Draft and Kickoff dates in the Project table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only thing I have to tie these together is the Hierarchy of the project&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;load inline [
ID,
Outline ID, Activity, Start Date
Project/A, 1,Project,1/1/2023
Project/A, 1.1 Document, 1/3/2023
Project/A, 1.1.1 Kickoff meeting,1/5/2023
Project/A, 1.1.1.1 Draft 1, 2/1/2023
Project/A, 1.1.1.2 Draft 2, 3/1/2023
Project/B, 1,Project,5/1/2022
Project/B, 1.1 Package, 6/3/2022
Project/B, 1.1.1 Document, 6/3/2022
Project/B, 1.1.1.1 Kickoff meeting,7/5/2022
Project B, 1.1.1.2 Shell, 6/15/2022
Project/B, 1.1.1.3 Draft 1, 8/1/2023
Project/B, 1.1.1.4 Draft 2, 9/1/2023
]&lt;/LI-CODE&gt;
&lt;P&gt;These dates could run 8 layers deep, I was hoping to not have nesting of applymaps that deep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thoughts&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 14:10:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Consolidating-project-dates-to-single-line/m-p/2008268#M83404</guid>
      <dc:creator>RogerG</dc:creator>
      <dc:date>2022-11-23T14:10:21Z</dc:date>
    </item>
  </channel>
</rss>

