<?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: Crosstable from resident loadSyntax - Field not found in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206452#M880378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess that the Week field that you are using in the LOAD column specification is not present in the input table Se_Sale_New1. Therefor, you cannot use it as a source column in LOAD expressions. The reason is simple: although the CROSSTABLE step is specified before the LOAD, it is actually executed after the LOAD. As are all prefixes (JOIN, KEEP etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to that, even a regular CROSSTABLE LOAD is known to cause all sorts of incompatibilities when you start getting creative. In the interest of manageability (&amp;amp; code readability), I would suggest to pull your manipulations apart into two successive LOADs, just like &lt;A href="https://community.qlik.com/qlik-users/209539"&gt;fer fer&lt;/A&gt; suggested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Oct 2016 10:01:45 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2016-10-08T10:01:45Z</dc:date>
    <item>
      <title>Crosstable from resident loadSyntax - Field not found</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206449#M880375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use Crosstable from resident load.&lt;/P&gt;&lt;P&gt;The reason to do this is - we have week as "2016-35" but I want to read only 35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, because this is an incremental file and we don't have fixed column so can not specify the field name and use subfield function.&lt;/P&gt;&lt;P&gt;Hence used the below script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Se_Sale_New1:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;resident SE_Sale where Sino=$(vMaxline2) ; &lt;/P&gt;&lt;P&gt;DROP table SE_Sale;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE_Final:&lt;/P&gt;&lt;P&gt;CrossTable(Week, Data)&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;SubField(Week,'-',2) as Week_SE&lt;/P&gt;&lt;P&gt;resident Se_Sale_New1;&lt;/P&gt;&lt;P&gt;drop table Se_Sale_New1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am getting an error "Field not found &amp;lt;Week&amp;gt;". Which is genuine but would like to know the alternate approach to achieve my requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206449#M880375</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable from resident loadSyntax - Field not found</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206450#M880376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Week is not present? Not sure I am understand, do you have a sample you can share with expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 17:53:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206450#M880376</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-07T17:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable from resident loadSyntax - Field not found</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206451#M880377</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;IMG alt="cross.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/140033_cross.png" style="height: 195px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 20:32:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206451#M880377</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2016-10-07T20:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable from resident loadSyntax - Field not found</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206452#M880378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess that the Week field that you are using in the LOAD column specification is not present in the input table Se_Sale_New1. Therefor, you cannot use it as a source column in LOAD expressions. The reason is simple: although the CROSSTABLE step is specified before the LOAD, it is actually executed after the LOAD. As are all prefixes (JOIN, KEEP etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to that, even a regular CROSSTABLE LOAD is known to cause all sorts of incompatibilities when you start getting creative. In the interest of manageability (&amp;amp; code readability), I would suggest to pull your manipulations apart into two successive LOADs, just like &lt;A href="https://community.qlik.com/qlik-users/209539"&gt;fer fer&lt;/A&gt; suggested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Oct 2016 10:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206452#M880378</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-10-08T10:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable from resident loadSyntax - Field not found</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206453#M880379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried right function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right(week,2) as fieldname&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Oct 2016 12:57:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-from-resident-loadSyntax-Field-not-found/m-p/1206453#M880379</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-10-08T12:57:27Z</dc:date>
    </item>
  </channel>
</rss>

