<?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: Field not found in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Field-not-found/m-p/1773825#M59924</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/71575"&gt;@M_Lhermitte&lt;/a&gt;&amp;nbsp;wrote:&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;[inst_per_course_1]:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;CourseIdentifier,&lt;BR /&gt;TraineeIdentifier,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType],&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType],&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;count(DISTINCT Trigram) as nb_instructor&lt;/P&gt;&lt;P&gt;resident [RawData_LOAD]&lt;BR /&gt;where match(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType]&lt;/STRONG&gt;&lt;/FONT&gt;, 'Airline', 'Internal') and match(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType]&lt;/STRONG&gt;&lt;/FONT&gt;, 'APT', 'FBS', 'FFS', 'FTD', 'FNPT')&lt;BR /&gt;and match(Competence, 'PG', 'PH')&lt;BR /&gt;group by CourseIdentifier, TraineeIdentifier,&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType],&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType]&lt;/STRONG&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;I see that red part is missing..&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jan 2021 18:33:41 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2021-01-12T18:33:41Z</dc:date>
    <item>
      <title>Field not found</title>
      <link>https://community.qlik.com/t5/App-Development/Field-not-found/m-p/1773788#M59921</link>
      <description>&lt;P&gt;hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please help me with this issue? when loading data, Qlik tells me the field "CustomerType" is not found. If I delete it, then the next field that is in the "where" clause is not found etc.&lt;/P&gt;&lt;P&gt;Any idea to solve this issue?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Marguerite&lt;/P&gt;&lt;P&gt;the script is:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;[inst_per_course_1]:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;CourseIdentifier,&lt;BR /&gt;TraineeIdentifier,&lt;/P&gt;&lt;P&gt;count(DISTINCT Trigram) as nb_instructor&lt;/P&gt;&lt;P&gt;resident [RawData_LOAD]&lt;BR /&gt;where match([CustomerType], 'Airline', 'Internal') and match([EquipmentType], 'APT', 'FBS', 'FFS', 'FTD', 'FNPT')&lt;BR /&gt;and match(Competence, 'PG', 'PH')&lt;BR /&gt;group by CourseIdentifier, TraineeIdentifier&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;[inst_per_course_2]:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;CourseIdentifier,&lt;BR /&gt;nb_instructor,&lt;BR /&gt;if(nb_instructor = '1', '1',&lt;BR /&gt;if(nb_instructor = '2', '2',&lt;BR /&gt;if(nb_instructor = '3', '3',&lt;BR /&gt;if(nb_instructor = '4', '4',&lt;BR /&gt;if(nb_instructor = '5', '5',&lt;BR /&gt;if(nb_instructor = '6', '6',&lt;BR /&gt;if(nb_instructor = '7', '7',&lt;BR /&gt;if(nb_instructor = '8', '8', nb_instructor)))))))) as nb_instructor_per_trainee&lt;/P&gt;&lt;P&gt;resident [inst_per_course_1]&lt;BR /&gt;;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Field-not-found/m-p/1773788#M59921</guid>
      <dc:creator>M_Lhermitte</dc:creator>
      <dc:date>2024-11-16T17:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Field not found</title>
      <link>https://community.qlik.com/t5/App-Development/Field-not-found/m-p/1773825#M59924</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/71575"&gt;@M_Lhermitte&lt;/a&gt;&amp;nbsp;wrote:&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;[inst_per_course_1]:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;CourseIdentifier,&lt;BR /&gt;TraineeIdentifier,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType],&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType],&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;count(DISTINCT Trigram) as nb_instructor&lt;/P&gt;&lt;P&gt;resident [RawData_LOAD]&lt;BR /&gt;where match(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType]&lt;/STRONG&gt;&lt;/FONT&gt;, 'Airline', 'Internal') and match(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType]&lt;/STRONG&gt;&lt;/FONT&gt;, 'APT', 'FBS', 'FFS', 'FTD', 'FNPT')&lt;BR /&gt;and match(Competence, 'PG', 'PH')&lt;BR /&gt;group by CourseIdentifier, TraineeIdentifier,&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[EquipmentType],&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[CustomerType]&lt;/STRONG&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;I see that red part is missing..&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 18:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Field-not-found/m-p/1773825#M59924</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2021-01-12T18:33:41Z</dc:date>
    </item>
  </channel>
</rss>

