<?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: Creating new dimension in load editor (not working) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999511#M82781</link>
    <description>&lt;P&gt;both dimensions used on line 23 are not available in this part of the script. So you should load it in an other part&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PMPData_2:&lt;/P&gt;
&lt;P&gt;Load *,&lt;/P&gt;
&lt;P&gt;PMP Assignmentdate + pmpnorm as PMPScheduled&lt;/P&gt;
&lt;P&gt;Resident PMPData;&lt;/P&gt;
&lt;P&gt;Besides that : A date + the character P ?&lt;/P&gt;</description>
    <pubDate>Wed, 02 Nov 2022 10:47:09 GMT</pubDate>
    <dc:creator>curiousfellow</dc:creator>
    <dc:date>2022-11-02T10:47:09Z</dc:date>
    <item>
      <title>Creating new dimension in load editor (not working)</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999499#M82778</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;I am trying the create a new dimension in the load editor.&lt;/P&gt;
&lt;P&gt;Line 15 makes sure it extracts only the numerical values from the field as stores it as ''PMPNorm''&lt;/P&gt;
&lt;P&gt;Then when trying to create a new dimension (Line 23) Where I add two fields I get the error code ''cannot find PMPNorm''.&lt;/P&gt;
&lt;P&gt;When doing this via the data manager it does work, same line of code...but I rather have the code not in an automated load editor. What am I missing here?&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ToinkToinkTigger_0-1667384743800.png" style="width: 753px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/92704iD98FA905F01F2664/image-dimensions/753x226?v=v2" width="753" height="226" role="button" title="ToinkToinkTigger_0-1667384743800.png" alt="ToinkToinkTigger_0-1667384743800.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:29:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999499#M82778</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2022-11-02T10:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new dimension in load editor (not working)</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999502#M82779</link>
      <description>&lt;P&gt;Hi, you can't use a field that is not yet created, you can use precedent or lresident load to use the generated field, ie:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PMPData:
LOAD
  *,
  [PMP Ass...]*[PMPNorm] as [PMPScheduled] // Uses the creted field
;
LOAD
  "Item ID" as PMPID,
  Subfield.... as PMPNorm //Create new field
  ...
FROM [lib...];&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:32:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999502#M82779</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-02T10:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new dimension in load editor (not working)</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999511#M82781</link>
      <description>&lt;P&gt;both dimensions used on line 23 are not available in this part of the script. So you should load it in an other part&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PMPData_2:&lt;/P&gt;
&lt;P&gt;Load *,&lt;/P&gt;
&lt;P&gt;PMP Assignmentdate + pmpnorm as PMPScheduled&lt;/P&gt;
&lt;P&gt;Resident PMPData;&lt;/P&gt;
&lt;P&gt;Besides that : A date + the character P ?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999511#M82781</guid>
      <dc:creator>curiousfellow</dc:creator>
      <dc:date>2022-11-02T10:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new dimension in load editor (not working)</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999525#M82783</link>
      <description>&lt;P&gt;Thank you, that worked!&lt;/P&gt;
&lt;P&gt;So now that it is in 'reversed order'&lt;/P&gt;
&lt;P&gt;If I want to recognize the field as a date field, where do I add that line of code? do I add it below PMPData:? with another LOAD statement? or can I add the code under LOAD*?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ToinkToinkTigger_0-1667386792572.png" style="width: 733px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/92712iD1EF1215337276FD/image-dimensions/733x99?v=v2" width="733" height="99" role="button" title="ToinkToinkTigger_0-1667386792572.png" alt="ToinkToinkTigger_0-1667386792572.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 11:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999525#M82783</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2022-11-02T11:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new dimension in load editor (not working)</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999529#M82784</link>
      <description>&lt;P&gt;'reversed order'?: kind of, but the order is the same as sql or other loads:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD fieldnames;
SQL Select ....&lt;/LI-CODE&gt;
&lt;P&gt;So basically each load uses the data loaded in the instruction below.&lt;/P&gt;
&lt;P&gt;You can use the date in the ame instruction:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD
  *,
  Date([PMP Ass...]+[PMPNorm]) as [PMPScheduled] // Uses the creted field
;
LOAD ...&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 11:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-new-dimension-in-load-editor-not-working/m-p/1999529#M82784</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-02T11:07:55Z</dc:date>
    </item>
  </channel>
</rss>

