<?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: &amp;quot;Field not found&amp;quot; error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375090#M139705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh ok I get your point,&lt;/P&gt;&lt;P&gt;If you want to concatenate two tables with some of the fields matching then try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But first thing first: Inline load is used when you are loading some data within the QVW itself. That means it doesn't have any datasources. In other terms you are hard coding data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate(Table1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C, D, E, F, G, H, I , J,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;K, L, M, N, O, P, Q&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow here: the moment you would write&amp;nbsp; anything on the second row it will be considered as data. Although from K to Q it might be field names. Or you will have to place everything in one line A to Q separated by commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead do this:&lt;/P&gt;&lt;P&gt;concatenate(Table1)&lt;/P&gt;&lt;P&gt;Load * A,&lt;/P&gt;&lt;P&gt;B,C,...Q&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From "some DataSource"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2012 21:14:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-06-29T21:14:20Z</dc:date>
    <item>
      <title>"Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375087#M139702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have this query and I am having error by not founding the filed clored red below..&lt;/P&gt;&lt;P&gt;Even I have copied the filed name from the source file and paste it in here, i am still getting the error..&lt;/P&gt;&lt;P&gt;and all the fields from that source are loaded before..&lt;/P&gt;&lt;P&gt;the top line that shows on the error window is colored by break.&lt;/P&gt;&lt;P&gt;Anybody knows what could be a possible reason for this error.&lt;/P&gt;&lt;P&gt;Thxs,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpImportantDateField:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceTable, DateFieldName, DateFieldLabel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (match('$(TARGETDASHBOARDCUSTOMER)', 'IHS') &amp;gt; 0) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; concatenate(tmpImportantDateField)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceTable, DateFieldName, DateFieldLabel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IhsLeaseDataCurrentFY, IhsExpiration, Lease Exp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapIhsLeaseData, MapIhsExpiration, Map Lease Exp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IhsExpiringOptions, IhsExpiringOptionNotify, IHS Expiring Option Notify&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt; CapexProjectData, &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;LeaseExpiration&lt;/STRONG&gt;&lt;/SPAN&gt;, Lease Expiration&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET varRowCount = numMax(noOfRows('tmpImportantDateField'), 0) - 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR i=0 TO $(varRowCount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varDateFieldName = peek('DateFieldName', $(i), 'tmpImportantDateField');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varDateFieldLabel = peek('DateFieldLabel', $(i), 'tmpImportantDateField');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varSourceTable = peek('SourceTable', $(i), 'tmpImportantDateField');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #993300;"&gt;// lookup the min and max dates from the source table &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tmpDateRange:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min(%$(varDateFieldName)DateKey) AS MinDateKey,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(%$(varDateFieldName)DateKey) AS MaxDateKey&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RESIDENT &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(varSourceTable);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // use "peek()" to inspect rows in the table to assign to the variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varMinDate = num(peek('MinDateKey', 0, 'tmpDateRange'));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varMaxDate = num(peek('MaxDateKey', 0, 'tmpDateRange'));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP TABLE tmpDateRange;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 20:31:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375087#M139702</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2012-06-29T20:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: "Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375088#M139703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a question for this part of the code...&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceTable, DateFieldName, DateFieldLabel&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IhsLeaseDataCurrentFY, IhsExpiration, Lease Exp&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapIhsLeaseData, MapIhsExpiration, Map Lease Exp&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IhsExpiringOptions, IhsExpiringOptionNotify, IHS Expiring Option Notify&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;CapexProjectData, &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;LeaseExpiration&lt;/STRONG&gt;&lt;/SPAN&gt;, Lease Expiration&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are you trying to concatenate this table to the above temp table with the first three field as same.&lt;/P&gt;&lt;P&gt;Because in inline the next rows after source table, datefieldname and datefieldlabel... would be considered as data and not individual fields anymore.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 20:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375088#M139703</guid>
      <dc:creator />
      <dc:date>2012-06-29T20:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: "Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375089#M139704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good question!.. The code is not mine but I was trying to follow the same steps they did.&lt;/P&gt;&lt;P&gt;Yest i am concatenating the tables to the above table. &lt;/P&gt;&lt;P&gt;it works perfectly for the first three line but the red one is giving me hard time.!&lt;/P&gt;&lt;P&gt;Thxs,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:03:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375089#M139704</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2012-06-29T21:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: "Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375090#M139705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh ok I get your point,&lt;/P&gt;&lt;P&gt;If you want to concatenate two tables with some of the fields matching then try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But first thing first: Inline load is used when you are loading some data within the QVW itself. That means it doesn't have any datasources. In other terms you are hard coding data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate(Table1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C, D, E, F, G, H, I , J,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;K, L, M, N, O, P, Q&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow here: the moment you would write&amp;nbsp; anything on the second row it will be considered as data. Although from K to Q it might be field names. Or you will have to place everything in one line A to Q separated by commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead do this:&lt;/P&gt;&lt;P&gt;concatenate(Table1)&lt;/P&gt;&lt;P&gt;Load * A,&lt;/P&gt;&lt;P&gt;B,C,...Q&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From "some DataSource"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375090#M139705</guid>
      <dc:creator />
      <dc:date>2012-06-29T21:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: "Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375091#M139706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree on your point. but I want to do is different.&lt;/P&gt;&lt;P&gt;the code is working fine without adding the red line..&lt;/P&gt;&lt;P&gt;once I add that one i get an error that Field LeaseExiration Not found.&lt;/P&gt;&lt;P&gt;Thxs,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375091#M139706</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2012-06-29T21:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: "Field not found" error</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375092#M139707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it isn't a big file or has company sensitive data...can you share you application.&lt;/P&gt;&lt;P&gt;Then probably we can have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:29:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Field-not-found-quot-error/m-p/375092#M139707</guid>
      <dc:creator />
      <dc:date>2012-06-29T21:29:00Z</dc:date>
    </item>
  </channel>
</rss>

