<?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: Loading problem Excel file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953536#M327860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just upload only the 3 record how its sit in ur excel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Oct 2015 14:30:13 GMT</pubDate>
    <dc:creator>nizamsha</dc:creator>
    <dc:date>2015-10-11T14:30:13Z</dc:date>
    <item>
      <title>Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953521#M327845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a strage Problem during loading from an Excel file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one field "category":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In following structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Category&lt;/P&gt;&lt;P&gt;"1.ABC"&lt;/P&gt;&lt;P&gt;"2.BCD"&lt;/P&gt;&lt;P&gt;"3.ABD &amp;amp; BCD"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after the reload I have only the last part of the third value --&amp;gt; in specific only BCD instead of "3.ABD &amp;amp; BCD"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont have a clue how this Comes - in the Excel file it is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 11:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953521#M327845</guid>
      <dc:creator>fatihsahin</dc:creator>
      <dc:date>2015-10-11T11:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953522#M327846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how exactly is your script written&lt;/P&gt;&lt;P&gt;because&amp;nbsp; on a simple load i can't reproduce your error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 11:23:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953522#M327846</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2015-10-11T11:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953523#M327847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Transformation - nothing. Just straight loading.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 11:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953523#M327847</guid>
      <dc:creator>fatihsahin</dc:creator>
      <dc:date>2015-10-11T11:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953524#M327848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might be that QlikView interprets this a bit too much ... the values from Excel. I am not able to reproduce it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you could try to do this in your load - as the Text() function will effectively prevent Excel from doing the possibly error prone interpretation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text( Category ) AS Category&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yourExcelFile.xls (ooxml .... ) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 11:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953524#M327848</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-11T11:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953525#M327849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the tip but I have already tried "text" but no success.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only difference to the rest of the values is , that this value has a "&amp;amp;" sign but really not sure what the Problem here is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 11:32:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953525#M327849</guid>
      <dc:creator>fatihsahin</dc:creator>
      <dc:date>2015-10-11T11:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953526#M327850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like the other mentioned, I did not have any issue loading the complete value (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;"3.ABD &amp;amp; BCD"&lt;/STRONG&gt;) with a simple load statement. This is what I used:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Category&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Community_186332.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/101652_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if that is going to help, but try creating another qvw file and re- add this particular Excel file using Table Files... and see if this problem persist for you.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 12:29:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953526#M327850</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-11T12:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953527#M327851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then it seems like your load have the field number 1 mispelled. QlikView is case sensitive when it comes to field and column names. And it seems that you get an empty string ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 12:54:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953527#M327851</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-11T12:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953528#M327852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please share the part of the load script where you have your load statement and possible attach the Excel-file or the first few rows...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 12:55:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953528#M327852</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-11T12:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953529#M327853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have now observed that this Problem always occurs if the value contains "&amp;amp;".&lt;/P&gt;&lt;P&gt;Whenever a "&amp;amp;" occurs it is only taking the part after the "&amp;amp;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone help based on that help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would it help to replace this sign with chr() ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 12:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953529#M327853</guid>
      <dc:creator>fatihsahin</dc:creator>
      <dc:date>2015-10-11T12:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953530#M327854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to share the script and a sample Excel file with us...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 13:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953530#M327854</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-11T13:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953531#M327855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you make a dummy Excel with the one row containing $ sign and share the script you would use to load the file into QlikView? This way we might be able to see what is going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 13:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953531#M327855</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-11T13:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953532#M327856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or can you try to run this qvw file on your computer and sharing a image of the table box object just like how I did in my previous post?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 13:11:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953532#M327856</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-11T13:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953533#M327857</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 checked this using inline its working fine&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Category&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"1.ABC"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"2.BCD"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"3.ABD &amp;amp; BCD"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;you might have a problem in excel file check the excel properly how its sit if still u cant identify upload the excel so others have a look at it and they will try to give the solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 13:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953533#M327857</guid>
      <dc:creator>nizamsha</dc:creator>
      <dc:date>2015-10-11T13:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953534#M327858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cant upload the original file and if I copy &amp;amp; paste into another Excel the Problem do not anymore occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow I have to fix this Problem with that file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess it something about the Excel - its a xlsx Format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 14:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953534#M327858</guid>
      <dc:creator>fatihsahin</dc:creator>
      <dc:date>2015-10-11T14:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953535#M327859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi fatih,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;It is the relation of the data fields you have in the file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;please check if the other values in the row for value &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"3.ABD &amp;amp; BCD" are loaded properly&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 14:30:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953535#M327859</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-11T14:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953536#M327860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just upload only the 3 record how its sit in ur excel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Oct 2015 14:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953536#M327860</guid>
      <dc:creator>nizamsha</dc:creator>
      <dc:date>2015-10-11T14:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Loading problem Excel file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953537#M327861</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;Please Share the sample Excel file . &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 08:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-problem-Excel-file/m-p/953537#M327861</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-12T08:20:29Z</dc:date>
    </item>
  </channel>
</rss>

