Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Loss of Data

I am importing data from an Excel file into QlikView and i am losing some data in the process.  The attached Excel file is the file being imported into QlikView.  For example the Drug Name Cloxacillin 250mg Capsule Application Number is being imported into QlikView as 0 instead of 00E131.  What could be happening?

1 Solution

Accepted Solutions
Not applicable
Author

Hi Christopher,

Try loading the application number like this:

LOAD [Drug Name],

     [Drug Code],

     Text(ApplicationNumber) as ApplicationNumber

FROM

...;

View solution in original post

8 Replies
Not applicable
Author

Hi Christopher,

Try loading the application number like this:

LOAD [Drug Name],

     [Drug Code],

     Text(ApplicationNumber) as ApplicationNumber

FROM

...;

maxgro
MVP
MVP

try with

excel:

LOAD [Drug Name], [Drug Code], text(ApplicationNumber) as ApplicationNumber

FROM tblWarehouseDrugList.xls (biff, embedded labels, table is tblDrugFile$);

I get this

1.png

Anonymous
Not applicable
Author

Thank you very much, it is now working fine

Anonymous
Not applicable
Author

Thank you very much

Anonymous
Not applicable
Author

Thank you very much it is now working fine

MarcoWedel

Hi,

another possibility could be to define this variable in the script:

SET ExponentNumberNotation=0;

table1:

LOAD *

FROM [http://community.qlik.com/servlet/JiveServlet/download/658588-137794/tblWarehouseDrugList.xls] (biff, embedded labels, table is tblDrugFile$);

QlikCommunity_Thread_142488_Pic1.JPG.jpg

hope this helps

regards

Marco

Anonymous
Not applicable
Author

Thank you

MarcoWedel

You're welcome

regards

Marco