<?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 Excel and ODBC data into qlik sense in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043979#M1577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also missing a ; at the end of the ODBC script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the ODBC script requires SQL before the SELECT&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;LIB CONNECT TO 'Bistrack';&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;&lt;STRONG&gt;SQL&lt;/STRONG&gt;&lt;BR /&gt;select &lt;BR /&gt;year(fy.Enddate) 'FinancialYear',&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;.....&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;&lt;SPAN style="color: #595959; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;where sa3.financialyearid &amp;gt;= 6 -- &amp;gt;=2014&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2016 16:05:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-02T16:05:16Z</dc:date>
    <item>
      <title>Loading Excel and ODBC data into qlik sense</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043977#M1575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created an APP and created an ODBC connection, pasted an SQL script into the data load editor and all works fine.&lt;/P&gt;&lt;P&gt;I then created a link to an Excel file and tried to load that data into the same APP and I get the error&lt;/P&gt;&lt;DIV class="message default" style="color: #595959; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;Data has not been loaded. Please correct the error and try loading again.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message default" style="color: #595959; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;App successfully saved.&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;I then created a new app and loaded the excel data successfully.&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;Can anyone help me identify the problem.&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;The complete script in the data load editor is&amp;nbsp; for the ODBC&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;&lt;P&gt;SET ThousandSep=',';&lt;BR /&gt;SET DecimalSep='.';&lt;BR /&gt;SET MoneyThousandSep=',';&lt;BR /&gt;SET MoneyDecimalSep='.';&lt;BR /&gt;SET MoneyFormat='£#,##0.00;-£#,##0.00';&lt;BR /&gt;SET TimeFormat='hh:mm:ss';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';&lt;BR /&gt;SET FirstWeekDay=0;&lt;BR /&gt;SET BrokenWeeks=1;&lt;BR /&gt;SET ReferenceDay=0;&lt;BR /&gt;SET FirstMonthOfYear=1;&lt;BR /&gt;SET CollationLocale='en-GB';&lt;BR /&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET LongMonthNames='January;February;March;April;May;June;July;August;September;October;November;December';&lt;BR /&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;BR /&gt;SET LongDayNames='Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sunday';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LIB CONNECT TO 'Bistrack';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;select &lt;BR /&gt;year(fy.Enddate) 'FinancialYear',&lt;BR /&gt;format(sa3.FinancialPeriodNumber, '00') 'Period',&lt;BR /&gt;convert(varchar(10),sa3.DocumentDate,111) 'Doc Date',&lt;BR /&gt;sr.name 'Sales Rep', &lt;BR /&gt;b1.name 'Branch',&lt;BR /&gt;b3.name ' Issuing Branch',&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;isnull(supplier.name,' No Supplier') 'Supplier', &lt;BR /&gt;--replace(replace(isnull(ol.manualcode,product.productcode),char(10),' ' ), char(13),' ' ) 'Product',&lt;/P&gt;&lt;P&gt;product.productcode, &lt;BR /&gt;--'"',&lt;BR /&gt;replace(replace ((case when sa3.documenttype = 'Invoice' then isnull(ol.manualdescription,product.description) &lt;BR /&gt;else isnull(cnl.manualdescription,product.description) end), CHAR(10),''),CHar(13),' ') as 'Decription',&lt;BR /&gt;--'"' ,&lt;BR /&gt;--Product Groups and Attributes &lt;/P&gt;&lt;P&gt;PG1.Name AS ProductGroup1 ,&lt;BR /&gt;PG2.Name AS ProductGroup2 ,&lt;BR /&gt;PG3.Name AS ProductGroup3 ,&lt;/P&gt;&lt;P&gt;product.udfRangeName As 'Range',&lt;BR /&gt;product.udfrangestyle As 'Style',&lt;BR /&gt;product.udfexclusivity as 'Exclusivity', &lt;BR /&gt;product.udfpriceclass as 'Price Class' ,&lt;BR /&gt;product.udfmaterial as 'Material' ,&lt;BR /&gt;product.udfsize as 'Size' ,&lt;BR /&gt;product.udfshape as 'Shape',&lt;BR /&gt;product.udffinishcolour as 'Colour',&lt;/P&gt;&lt;P&gt;case when sa3.DocumentType = 'Invoice' then format(round((OL.Quantity * OL.StockPerConversion),2),'###.##')&lt;BR /&gt;else format((cnL.Quantity),'###.##') end as&amp;nbsp; 'Qty Desp' , --need to ensure sales are all represented in the same units &lt;/P&gt;&lt;P&gt;isnull(stockper.percode,per.percode) as 'Per',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;case when sa3.documenttype&amp;nbsp; = 'Invoice' then&amp;nbsp; ol.unitsellprice * (OL.Quantity * OL.StockPerConversion) else sa3.TotalSales end 'Total Undisc Price',&lt;BR /&gt;sa3.totalsales 'SA-Total Sell',&lt;BR /&gt;'MPV' = sa3.totalinternalcost - sa3.totalcost,&lt;BR /&gt;sa3.totalcost 'SA-Total Cost',&lt;BR /&gt;sa3.totalinternalcost 'SA-Total IntCost',&lt;/P&gt;&lt;P&gt;sa3.DocumentType 'Doc Type',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;'Stock Type'&amp;nbsp; = case &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when left(product.productcode,3) = 'ZZC' then 'Catalogue Special' &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when left(product.productcode,3) = 'ZZZ' then 'Opal Dead Special' &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when left(product.productcode,2) = 'ZZ' then 'Generic Special' &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when left(product.productcode,1) = 'Z' then 'Defined Special'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when product.producttype &amp;lt;&amp;gt;1 then 'Other'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 'Stock' End ,&lt;/P&gt;&lt;P&gt;CASE when sa3.DocumentType = 'Invoice' then&amp;nbsp; isnull(oh.ordernumber,sa3.documentid) else cnh.CreditNoteNumber end as 'Doc No', &lt;BR /&gt;CASE when sa3.DocumentType = 'Invoice' then ol.linenumber else cnl.linenumber end as 'Line No' ,&lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--'DocFrom'&amp;nbsp; = case when isnull(olp.orderlineid,0)=0 THEN 'Opal' else 'BT' End,&lt;/P&gt;&lt;P&gt;ol.discount1 'Rep Disc1',&lt;BR /&gt;ol.discount2 'Rep Disc2',&lt;BR /&gt;ct.name 'Customertype',&lt;BR /&gt;customer.name 'Customer',&lt;BR /&gt;--customer.customertypeid, &lt;BR /&gt;case when customer.cashaccount = 0 then 'Credit' else 'Cash' end as&amp;nbsp; 'Cash a/c',&lt;/P&gt;&lt;P&gt;'Premier a/c' = case when customer.customertypeid = 5 then 'Retail' &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when customer.cashaccount = 1 then 'Trade Cash'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 'Trade Credit' end,&lt;BR /&gt;sa.name 'Sales Area',&lt;BR /&gt;st.name 'Sales type',&lt;/P&gt;&lt;P&gt;customer.customercode 'Cust Code',&lt;BR /&gt;(customer.customercode + '~' + dbo.psiPostcodeFromString(isnull(oh.deliveryaddress,isnull(croh.deliveryaddress,cnh.invoiceaddress)))) as 'Property',&lt;BR /&gt;dbo.psiPostcodeFromString(isnull(oh.deliveryaddress,isnull(croh.deliveryaddress,cnh.invoiceaddress))) 'Delivery Pcode',&lt;BR /&gt;REPLACE(REPLACE(isnull(oh.deliveryaddress,isnull(croh.deliveryaddress,cnh.invoiceaddress)),CHAR(10),' '),CHAR(13),' ') 'Delivery Address',&lt;BR /&gt;r.name ' Region',&lt;BR /&gt;case when product.udfexclusivity in ('CPH Branded','Exclusive','Semi Exclusive') then 'Obese' else 'Non-Obese' end as 'Obese'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;from FinancialYear fy WITH(NOLOCK)&lt;BR /&gt;left join SalesAnalysis3 sa3 WITH (NOLOCK) on fy.FinancialYearID = sa3.FinancialYearID&lt;BR /&gt;LEFT JOIN InvoiceHeader IVH WITH(NOLOCK) ON SA3.DocumentID = IVH.InvoiceID and sa3.DocumentType = 'Invoice'&lt;BR /&gt;left join invoiceline as ivl on ivl.InvoiceLineID = sa3.DocumentLineID and sa3.DocumentType = 'Invoice'&lt;BR /&gt;left join orderheader&amp;nbsp; as oh with (nolock) on ivh.orderid&amp;nbsp; = oh.orderid&lt;BR /&gt;left join orderline as ol with (nolock) on ivl.orderlineid&amp;nbsp; = ol.orderlineid &lt;BR /&gt;LEFT JOIN CostAdjustmentHeader CAH WITH(NOLOCK) ON SA3.DocumentID = CAH.CostAdjustmentID&lt;BR /&gt;LEFT JOIN Branch AS B4 WITH(NOLOCK) ON B4.BranchID = SA3.HomeBranchID&lt;BR /&gt;LEFT JOIN Branch AS B3 WITH(NOLOCK) ON B3.BranchID = SA3.IssuingBranchID&lt;BR /&gt;LEFT JOIN Branch AS B1 WITH(NOLOCK) ON B1.BranchID = SA3.BranchID&lt;BR /&gt;LEFT join product on sa3.productid = product.productid&lt;BR /&gt;LEFT join supplier WITH(NOLOCK) on supplier.supplierid = product.supplierid&lt;BR /&gt;left join SalesRep as sr with (nolock) on sa3.salesrepid = sr.salesrepid&lt;/P&gt;&lt;P&gt;left join orderlinepriceinfo as olp with(nolock) on ivl.orderlineid = olp.orderlineid&lt;BR /&gt;left join region as r with(nolock) on r.regionid = b1.regionid&lt;BR /&gt;left join productprice as pp with(nolock) on sa3.productid = pp.productid and 0 = pp.branchid and pp.length&amp;nbsp; = 0&lt;BR /&gt;left join productprice as ppo with(nolock) on sa3.productid = ppo.productid and ppo.branchid =isnull(sa3.IssuingBranchID, sa3.OrderingBranchID)&amp;nbsp; and ppo.length=0&lt;BR /&gt;left join customer with(nolock) on sa3.customerid = customer.customerid &lt;BR /&gt;left join customertype as ct with(nolock) on customer.customertypeid&amp;nbsp; = ct .customertypeid&lt;BR /&gt;left join customerfinancial as cf with (nolock) on cf.customerid = customer.customerid&lt;BR /&gt;LEFT JOIN ProductGroup AS PG1 WITH(NOLOCK) ON PG1.ProductGroupID = sa3.ProductGroup1ID&lt;BR /&gt;LEFT JOIN ProductGroup AS PG2 WITH(NOLOCK) ON PG2.ProductGroupID = sa3.ProductGroup2ID&lt;BR /&gt;LEFT JOIN ProductGroup AS PG3 WITH(NOLOCK) ON PG3.ProductGroupID = sa3.ProductGroup3ID&lt;BR /&gt;left join saletype as st with (nolock) on sa3.SaleType&amp;nbsp; = st.SaleTypeID&lt;BR /&gt;left join salesarea as sa with(nolock) on sa3.salesareaid = sa.salesareaid&lt;/P&gt;&lt;P&gt;left join per as stockper on stockper.perid = ol.CostPerID&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;left join CreditNoteLine as cnl with(nolock) on cnl.CreditNoteLineID = sa3.documentlineid &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and cnl.creditnoteid = sa3.documentid &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and sa3.documenttype = 'Credit'&lt;/P&gt;&lt;P&gt;left join CreditNoteHeader as cnh with (nolock) on cnh.CreditNoteID = cnl.CreditNoteID&lt;BR /&gt;left join orderheader as croh with(nolock) on cnh.orderid = croh.orderID&lt;BR /&gt;left join per with(nolock) on per.perid&amp;nbsp; = isnull(ol.inputPerID,cnl.inputperid)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where sa3.financialyearid &amp;gt;= 6 -- &amp;gt;=2014&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;AND FOR THE EXCEL FILE&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;LOAD&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;[FinancialYear],&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;[Period],&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;[PdIndex]&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;FROM [lib://Sales (Despatches) starting from 2014/Financial Period Index.xlsx]&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="message error" style="color: #ff0000; text-indent: 0px;"&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt;(ooxml, embedded labels, table is Sheet1)&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;DIV class="selectable" style="margin: 0px 0px 0px 5px;"&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 13:48:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043977#M1575</guid>
      <dc:creator />
      <dc:date>2016-02-28T13:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel and ODBC data into qlik sense</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043978#M1576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are You not missing a ";" after "&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;(ooxml, embedded labels, table is Sheet1)"&lt;SPAN style="color: #808080;"&gt;?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg, row ought to read;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;SPAN style="color: #666699;"&gt;And shouldn't the load statement also be preceded by a table name, eg;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;whatevername:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;LOAD&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 08:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043978#M1576</guid>
      <dc:creator>Lucke_Hallbergson</dc:creator>
      <dc:date>2016-03-02T08:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel and ODBC data into qlik sense</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043979#M1577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also missing a ; at the end of the ODBC script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the ODBC script requires SQL before the SELECT&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;LIB CONNECT TO 'Bistrack';&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;&lt;STRONG&gt;SQL&lt;/STRONG&gt;&lt;BR /&gt;select &lt;BR /&gt;year(fy.Enddate) 'FinancialYear',&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;.....&lt;/P&gt;&lt;P style="font-size: 11.6987px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #595959;"&gt;&lt;SPAN style="color: #595959; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6987px;"&gt;where sa3.financialyearid &amp;gt;= 6 -- &amp;gt;=2014&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 16:05:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043979#M1577</guid>
      <dc:creator />
      <dc:date>2016-03-02T16:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Excel and ODBC data into qlik sense</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043980#M1578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&amp;nbsp; - it's now fixed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 00:54:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-Excel-and-ODBC-data-into-qlik-sense/m-p/1043980#M1578</guid>
      <dc:creator />
      <dc:date>2016-03-03T00:54:29Z</dc:date>
    </item>
  </channel>
</rss>

