Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
naveen341
Creator
Creator

Special Characters in the excel makes makes the data truncated when we load into the Qlikview

Hi,

  I have an excel file of shipment Details .

  In the Address or the name fields It contains a different kinds of special characters like &,Alpha,Betta and many more .

  example: "Dißerner Bruch 81"

The problem when I import the file into QlikView as my data source, the left part along with the special character is truncated and displayed as

  "erner Bruch 81".

I cannot edit the excel Files as it contains millions of record on daily basis. But one thing I noticed is when I copy or do "Save as " the same file then it reads the complete data as "Dißerner Bruch 81"

  All characters before the "ß" are truncated and couldn't read by QlikView.

  Any help on getting through this?

Thanks in Advance

Regards,

Naveen.

1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

hi replace that field by empty string

Replace( Field, '_x000D_'  ,'')

View solution in original post

13 Replies
Chanty4u
MVP
MVP

hi replace that field by empty string

Replace( Field, '_x000D_'  ,'')

Gysbert_Wassenaar

Are you sure your source document is an excel file and not a csv file? It sounds like it is a csv file with unicode characters and you try to load it as an ascii file.


talk is cheap, supply exceeds demand
naveen341
Creator
Creator
Author

HI Chanty .

It is still the same .

Any other suggestions?

3-25-2016 11-29-24 AM special character.png

naveen341
Creator
Creator
Author

HI Wassenaar.

Yes i am sure its a excel file only

Chanty4u
MVP
MVP

try to create

Replace(Your Field,'ß',' ') as Youfield,

Gysbert_Wassenaar

Can you post the load statement that loads that file?


talk is cheap, supply exceeds demand
naveen341
Creator
Creator
Author

BUt ß is not the only special character in that excel i have many such kind of special characters

naveen341
Creator
Creator
Author

LOAD [Shipment Details],

     [Shipped (ASN)],

     [Shipment ID],

     [Delivered to Final Dest.],

     [Purchase Order],

     [Final Destination (Shipment)],

     [Final Destination Addr1],

     [Final Destination City],

     [Final Destination Country],

     [Final Destination Postal Code],

     [Final Destination State],

     Status,

     [BL/AWB/PRO],

     Container,

     [Pro #]

FROM

(ooxml, embedded labels, table is [View Shipments]);

naveen341
Creator
Creator
Author

i dont want to delete or replace the special character how can i get the output as "Dißerner Bruch 81 " ?