<?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: Load Script - MS Access &amp; Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545360#M203690</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What the meaning of the statement, ie should it be as you have mentioned or more like name of the table I want or name of the table in ms access database?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Sep 2013 16:19:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-20T16:19:08Z</dc:date>
    <item>
      <title>Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545353#M203683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am loading data from tables in MS Access. I needed to obtain information on how to undertake following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Add New Column/Field for Calcuation based on existing data e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Sales = Unit Price X Quantity, Where Unit Price &amp;amp; Quantity are part of the Table in MS Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attempted to do Sales, and following is the my load script for MS Access:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;ODBC CONNECT TO [MS Access Database;DBQ=C:\Users\Uday\Desktop\Qlikview Project\Files\QWT.mdb];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;//-------- Start Multiple Select Statements ------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[OrderId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[ProductId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[UnitPrice],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Quantity],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Discount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;([Unit Price*Quantity]) as [Sales];&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SQL SELECT&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[OrderId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[ProductId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[UnitPrice],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Quantity],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Discount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;FROM `Order Details`;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;//-------- End Multiple Select Statements ------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see from above, I have attempted to add a new column with following:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;([Unit Price*Quantity]) as [Sales];&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;However, when I run the script I get the following error message:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SQL##f - SqlState: 37000, ErrorCode: 4294963792, ErrorMsg: [Microsoft][ODBC Microsoft Access Driver] The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SQL SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;[OrderId],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;[ProductId],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;[UnitPrice],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Quantity],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;[Discount],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;FROM `OrderDetails`&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Please note the following:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;* I am using Qlikview Version 11&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;* I searched Qlikkview community &amp;amp; blogs to determine a possible solution, however couldn't locate anythign very specific&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I believe this should be a very a basic coding in the script that should be very easily achievable.&amp;nbsp; Your expert help, guidance is welcomed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Uday&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 05:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545353#M203683</guid>
      <dc:creator />
      <dc:date>2013-09-20T05:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545354#M203684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Uday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Remove the comma after [Discount]&lt;/LI&gt;&lt;LI&gt;Your calc expression (last line of the LOAD) should read:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UnitPrice * Quantity As Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 05:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545354#M203684</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-09-20T05:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545355#M203685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use preceding load as below to achieve this.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;LOAD *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 11px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[UnitPrice] * &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11px;"&gt;[Quantity]&amp;nbsp; as &lt;STRONG style="color: #3d3d3d; font-family: inherit; font-size: 11px; font-style: inherit;"&gt;[Sales];&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[OrderId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[ProductId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[UnitPrice],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Quantity],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Discount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;([Unit Price*Quantity]) as [Sales];&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;SQL SELECT&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[OrderId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[ProductId],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[UnitPrice],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Quantity],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Discount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;FROM `Order Details`;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;Rajesh Vaswani&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 06:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545355#M203685</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2013-09-20T06:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545356#M203686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Few things which seem incorrect in your syntax :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Remove the inverted commas from table name Order Details.&lt;/P&gt;&lt;P&gt;2. Remove comma after Discount in select statement.&lt;/P&gt;&lt;P&gt;3. ([Unit Price*Quantity]) as [Sales] should be ([Unit Price] * [Quantity]) as [Sales]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 06:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545356#M203686</guid>
      <dc:creator />
      <dc:date>2013-09-20T06:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545357#M203687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everyone for responding.&amp;nbsp; however this is not working and I have tried the following options for loading from MS Access database table.&amp;nbsp; The ` you see in the order details is defaulted from script and removing it could issues.&amp;nbsp; So anyway, I tried the following two scripts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCRIPT A:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Extension],&lt;BR /&gt;[Discount],&lt;BR /&gt;([Unit Price*Quantity]) as [Sales];&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Extension],&lt;BR /&gt;[Discount]&lt;BR /&gt;([Unit Price*Quantity]) as [Sales],&lt;BR /&gt;FROM `Order Details`;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SCRIPT B:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;[UnitPrice] * [Quantity]&amp;nbsp; as [Sales];&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Discount],&lt;BR /&gt;([Unit Price*Quantity]) as [Sales];&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Discount],&lt;BR /&gt;FROM `Order Details`;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN BOTH TH ESCRIPTS I GET THE FOLLOWING ERROR MESSAGE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL##f - SqlState: 37000, ErrorCode: 4294963792, ErrorMsg: [Microsoft][ODBC Microsoft Access Driver] The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect.&lt;BR /&gt;SQL SELECT&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Extension],&lt;BR /&gt;[Discount]&lt;BR /&gt;([Unit Price*Quantity]) as [Sales],&lt;BR /&gt;FROM `Order Details`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COULD SOMEONE PLEASE LET ME KNOW WHAT IS MISSING IN THE LOADSCRIPT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 15:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545357#M203687</guid>
      <dc:creator />
      <dc:date>2013-09-20T15:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545358#M203688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try with this, deleting the mentioned line and where it says SQL SELECT, if you fetching everything it's easier if you type * instead of the explicit field names. BTW, brackets [ ] are mandatory only if your field name has spaces or certain alphanumeric characters, otherwise is optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Table_Name]:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[UnitPrice] * [Quantity]&amp;nbsp; as [Sales];&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;BR /&gt;[OrderId],&lt;BR /&gt;[ProductId],&lt;BR /&gt;[UnitPrice],&lt;BR /&gt;[Quantity],&lt;BR /&gt;[Discount],&lt;BR /&gt;//([Unit Price*Quantity]) as [Sales]; JUST COMMENT OR DELETE THIS LINE&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;BR /&gt;FROM `Order Details`;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:03:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545358#M203688</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2013-09-20T16:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545359#M203689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;OrderId,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ProductId,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;UnitPrice,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Quantity,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Extension,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Discount,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;("Unit Price"*Quantity) as Sales&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FROM "Order Details";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545359#M203689</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-09-20T16:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545360#M203690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What the meaning of the statement, ie should it be as you have mentioned or more like name of the table I want or name of the table in ms access database?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:19:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545360#M203690</guid>
      <dc:creator />
      <dc:date>2013-09-20T16:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545361#M203691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have entered the following script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Order Details]: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[UnitPrice]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Quantity]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Sales]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[OrderId]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[ProductId]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[UnitPrice]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Quantity]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Discount]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;//([Unit Price*Quantity]) as [Sales];&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SQL&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT *&lt;BR /&gt;FROM `Order Details`; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT NOW I GET THE FOLLOWING ERROR MESSAGE, EVEN THOUGH THE FIELD IS IN THE DATABASE TABLE:&lt;/P&gt;&lt;P&gt;Field not found - &amp;lt;OrderId&amp;gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM `Order Details`&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:22:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545361#M203691</guid>
      <dc:creator />
      <dc:date>2013-09-20T16:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545362#M203692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the [Table_Name] is the name of the table inside QlikView, you can either rename it or leave it blank. If you don't explicitly put a name inside QlikView, it will take the name from the original database (Access in this case). However, as a best practice is recommended to always put the name of the table explicitly inside QlikView. It has to be before the LOAD statement and ending the name with :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;regards &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:23:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545362#M203692</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2013-09-20T16:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545363#M203693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether the Case of the field name differs, this may also the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:35:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545363#M203693</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-09-20T16:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Load Script - MS Access &amp; Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545364#M203694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BIG BIG THANK YOU TO EVERYONE FOR YOUR EXCELLENT HELP THANK YOU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 16:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Script-MS-Access-Excel/m-p/545364#M203694</guid>
      <dc:creator />
      <dc:date>2013-09-20T16:49:04Z</dc:date>
    </item>
  </channel>
</rss>

