Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone!
Help me please!
What should I do to send my excel file into qlikview?
When I try to do this it shows error 'cannot read biff files'
Thank you!
I'm sorry but this file is confidential, you can ask me questions if you want
I'll explain all from beggining:
my source code is
load
[год],
[месяц],
[код]
from
(biff, embedded labels, table is база);
after reloading it shows error 'cannot read biff files'
Please check this
In QlikView, there is no Table File filter for XLSB files.
XLSB isn't even part of the OOXML format specification but a Microsoft-proprietary binary file format (BIFF12). Just like BIFF but different. More modern. Therefor, the BIFF table file filter in QlikView cannot be used to read this type of files either. That one can only read old (pre-Office 2007-style) XLS binary files.
An OOXML-format file is actually a simple .ZIP archive that contains various directories with a large amount of XML files (i.e. text). The OOXML file format filter in QlikView is able to read this kind of file, but not the binary XLSB format.
As has been suggested many times, you'll need to define an ODBC/OLE DB driver chain, because Microsofts own drivers can read XLSB files.
sorry , I'm wrong . actually we can load xlsb by ODBC , script like this
ODBC CONNECT32 TO [Excel Files;DBQ=C:\New Microsoft Excel Worksheet.xlsb];
SQL SELECT *
FROM `C:\New Microsoft Excel Worksheet.xlsb`.`Sheet1$`;
thank you!