<?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 cannot find error? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085120#M641685</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is another question. The script below does now work for the newly renamed field in load statement.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(&lt;STRONG&gt;len(&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge)=0, 'Null', if(&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;45, '0-44', if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;65, '45-64',if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;75, '65-74', '75+')))) as Age2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The &lt;EM&gt;&lt;STRONG&gt;len(&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge)=0 already return false, since I cannot get Null even though there are a lot of blanks in this field. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Do I need start another thread? &lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Thanks.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Feb 2016 00:24:08 GMT</pubDate>
    <dc:creator>baylor2016</dc:creator>
    <dc:date>2016-02-02T00:24:08Z</dc:date>
    <item>
      <title>Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085116#M641681</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;/P&gt;&lt;P&gt;I am using the following script to load my data. The query runs ok in Server, but the load script always give me 'Field not found &amp;lt;&lt;STRONG&gt;EncounterAge&lt;/STRONG&gt;&amp;gt;' error. It looks like the renamed or calculated fields cannot be used in load script. Is this true? If yes, what is the solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Longmatch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Encounters:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if(BMI&amp;lt;=18.5, 'Underweight', if(BMI&amp;lt;=24.9, 'Normal', if(BMI&amp;lt;=29.9, 'Overweight', 'Obesity'))) as BMI2,&lt;/P&gt;&lt;P&gt;if(BP_SYSTOLIC&amp;lt;140, '&amp;lt;140', '&amp;gt;=140') as Systolic,&lt;/P&gt;&lt;P&gt;if(BP_DIASTOLIC&amp;lt;90, '&amp;lt;90', '&amp;gt;=90') as Diastolic,&lt;/P&gt;&lt;P&gt;if(&lt;STRONG&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;45, '0-44', if(&lt;STRONG&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;65, '45-64',if(&lt;STRONG&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;75, '65-74', '75+'))) as Age2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;sql &lt;/P&gt;&lt;P&gt;with DiabetesPatientList as (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;select distinct a.pat_id&lt;/P&gt;&lt;P&gt;from problem_list a&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;where a.icd9_code like '250.%'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;select a.pat_id, a.PAT_ENC_CSN_ID,a.Contact_date, a.PCP_PROV_ID, a.FIN_CLASS_C,&amp;nbsp; a.VISIT_PROV_ID, a.VISIT_PROV_TITLE, &lt;/P&gt;&lt;P&gt;a.BMI, a.BP_SYSTOLIC, a.BP_DIASTOLIC,&amp;nbsp; e.DEPARTMENT_NAME,&lt;/P&gt;&lt;P&gt;trunc ((a.contact_date - b.birth_date)/365.25) as &lt;STRONG&gt;EncounterAge&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;c.Prov_name as PCP,&lt;/P&gt;&lt;P&gt;d.prov_name as VisitPhysician,&lt;/P&gt;&lt;P&gt;e.Department_NAME as Department，&lt;/P&gt;&lt;P&gt;extract(Year from a.contact_date) as intYear, extract(Year from a.contact_date)*100+extract(month from a.contact_date) as IntYearMonth&lt;/P&gt;&lt;P&gt;from pat_enc a&amp;nbsp; &lt;/P&gt;&lt;P&gt;inner join patient b on a.pat_id = b.pat_id &lt;/P&gt;&lt;P&gt;INNER JOIN DiabetesPatientList f on f.pat_id=a.pat_id&lt;/P&gt;&lt;P&gt;LEFT JOIN clarity_SER c on a.PCP_PROV_ID =c.prov_id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;left join clarity_ser d on d.prov_id = a.visit_prov_id&lt;/P&gt;&lt;P&gt;left join clarity_dep e on a.DEPARTMENT_ID = e.DEPARTMENT_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;where a.CONTACT_DATE &amp;gt;= to_date('01-Jan-2011', 'dd-mon-yy')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 17:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085116#M641681</guid>
      <dc:creator>baylor2016</dc:creator>
      <dc:date>2016-01-27T17:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085117#M641682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many varieties of sql will capitilise field names unless enclosed in double quotes.&amp;nbsp; Try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;Encounters:&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;LOAD *,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;if(BMI&amp;lt;=18.5, 'Underweight', if(BMI&amp;lt;=24.9, 'Normal', if(BMI&amp;lt;=29.9, 'Overweight', 'Obesity'))) as BMI2,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;if(BP_SYSTOLIC&amp;lt;140, '&amp;lt;140', '&amp;gt;=140') as Systolic,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;if(BP_DIASTOLIC&amp;lt;90, '&amp;lt;90', '&amp;gt;=90') as Diastolic,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;45, '0-44', if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;65, '45-64',if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;75, '65-74', '75+'))) as Age2&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;sql&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;with DiabetesPatientList as ( &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;select distinct a.pat_id&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;from problem_list a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;where a.icd9_code like '250.%'&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;select a.pat_id, a.PAT_ENC_CSN_ID,a.Contact_date, a.PCP_PROV_ID, a.FIN_CLASS_C,&amp;nbsp; a.VISIT_PROV_ID, a.VISIT_PROV_TITLE,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;a.BMI, a.BP_SYSTOLIC, a.BP_DIASTOLIC,&amp;nbsp; e.DEPARTMENT_NAME,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;trunc ((a.contact_date - b.birth_date)/365.25) as &lt;SPAN style="color: #ff0000; font-size: 12pt;"&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;"&lt;/SPAN&gt;&lt;/STRONG&gt;,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;c.Prov_name as PCP,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;d.prov_name as VisitPhysician,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;e.Department_NAME as Department，&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;extract(Year from a.contact_date) as intYear, extract(Year from a.contact_date)*100+extract(month from a.contact_date) as IntYearMonth&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;from pat_enc a&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;inner join patient b on a.pat_id = b.pat_id&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;INNER JOIN DiabetesPatientList f on f.pat_id=a.pat_id&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;LEFT JOIN clarity_SER c on a.PCP_PROV_ID =c.prov_id &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;left join clarity_ser d on d.prov_id = a.visit_prov_id&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;left join clarity_dep e on a.DEPARTMENT_ID = e.DEPARTMENT_ID&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000; padding-left: 30px;"&gt;&lt;EM&gt;where a.CONTACT_DATE &amp;gt;= to_date('01-Jan-2011', 'dd-mon-yy')&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 17:48:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085117#M641682</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-27T17:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085118#M641683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the trick!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 18:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085118#M641683</guid>
      <dc:creator>baylor2016</dc:creator>
      <dc:date>2016-01-27T18:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085119#M641684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No worries, glad you are sorted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 18:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085119#M641684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-27T18:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085120#M641685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is another question. The script below does now work for the newly renamed field in load statement.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(&lt;STRONG&gt;len(&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge)=0, 'Null', if(&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;45, '0-44', if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;65, '45-64',if(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge&lt;/STRONG&gt;&amp;lt;75, '65-74', '75+')))) as Age2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The &lt;EM&gt;&lt;STRONG&gt;len(&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;EncounterAge)=0 already return false, since I cannot get Null even though there are a lot of blanks in this field. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Do I need start another thread? &lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM&gt;&lt;EM&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Thanks.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 00:24:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085120#M641685</guid>
      <dc:creator>baylor2016</dc:creator>
      <dc:date>2016-02-02T00:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field cannot find error?</title>
      <link>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085121#M641686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably best to start a new thread with some sample data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 08:27:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-cannot-find-error/m-p/1085121#M641686</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-02T08:27:20Z</dc:date>
    </item>
  </channel>
</rss>

