<?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 case sensitive load fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201314#M712962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your fast answer, Michael. I think I didn't write that well...&lt;/P&gt;&lt;P&gt;What's happening is that I have a list of qvd's with data in the same folder, each named according to the day it was created. My intention is to load the data on all of them, including the field EventType, whith is in all of the qvd's . In some of those the field is called EVENTTYPE (all in upper case), but on others it's called EventType (capitalized). when I run the LOAD routine it identifies the field EVENTTYPE but not EventType, so it shows me a field not found error. My with is to load both fields in the same resulting field.&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt; ID,&lt;BR /&gt; EVENTTYPE //The problem is here. In some files the field is EVENTTYPE while in others it's EventType&lt;BR /&gt; EVENTDESCRIPTION&lt;/P&gt;&lt;P&gt;FROM (path)\ *.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jun 2010 20:20:36 GMT</pubDate>
    <dc:creator>munozdj1</dc:creator>
    <dc:date>2010-06-24T20:20:36Z</dc:date>
    <item>
      <title>case sensitive load fields</title>
      <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201312#M712960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm loading data from various qvd's from some predefined fields. The problem is when I try to load the field EVENTTYPE from a lot of qvd's at the same time, since in some of those it's called EVENTTYPE but in the others it's called EventType.&lt;/P&gt;&lt;P&gt;How can I tell the LOAD statement that those are, in fact, the same field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 18:19:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201312#M712960</guid>
      <dc:creator>munozdj1</dc:creator>
      <dc:date>2010-06-24T18:19:26Z</dc:date>
    </item>
    <item>
      <title>case sensitive load fields</title>
      <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201313#M712961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD&lt;BR /&gt;...&lt;BR /&gt;EventType as EVENTTYPE&lt;BR /&gt;...&lt;BR /&gt;FROM...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 19:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201313#M712961</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-24T19:15:32Z</dc:date>
    </item>
    <item>
      <title>case sensitive load fields</title>
      <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201314#M712962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your fast answer, Michael. I think I didn't write that well...&lt;/P&gt;&lt;P&gt;What's happening is that I have a list of qvd's with data in the same folder, each named according to the day it was created. My intention is to load the data on all of them, including the field EventType, whith is in all of the qvd's . In some of those the field is called EVENTTYPE (all in upper case), but on others it's called EventType (capitalized). when I run the LOAD routine it identifies the field EVENTTYPE but not EventType, so it shows me a field not found error. My with is to load both fields in the same resulting field.&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt; ID,&lt;BR /&gt; EVENTTYPE //The problem is here. In some files the field is EVENTTYPE while in others it's EventType&lt;BR /&gt; EVENTDESCRIPTION&lt;/P&gt;&lt;P&gt;FROM (path)\ *.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 20:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201314#M712962</guid>
      <dc:creator>munozdj1</dc:creator>
      <dc:date>2010-06-24T20:20:36Z</dc:date>
    </item>
    <item>
      <title>case sensitive load fields</title>
      <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201315#M712963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The correct way to fix this is to make sure the field has the same name in all QVDs.&lt;BR /&gt;Otherwise, it makes sense to try something like this. Script runs ignoring errors:&lt;/P&gt;&lt;P&gt;SET ErrorMode=0&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt; ID,&lt;BR /&gt; EVENTTYPE&lt;BR /&gt; EVENTDESCRIPTION&lt;BR /&gt;FROM (path)\ *.qvd&lt;/P&gt;&lt;P&gt;followed by:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt; ID,&lt;BR /&gt; EventType as EVENTTYPE&lt;BR /&gt; EVENTDESCRIPTION&lt;BR /&gt;FROM (path)\ *.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 21:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201315#M712963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-24T21:12:48Z</dc:date>
    </item>
    <item>
      <title>case sensitive load fields</title>
      <link>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201316#M712964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, it worked like a charm!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 21:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/case-sensitive-load-fields/m-p/201316#M712964</guid>
      <dc:creator>munozdj1</dc:creator>
      <dc:date>2010-06-24T21:56:28Z</dc:date>
    </item>
  </channel>
</rss>

