Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
hi replace that field by empty string
Replace( Field, '_x000D_' ,'')
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.
HI Chanty .
It is still the same .
Any other suggestions?
HI Wassenaar.
Yes i am sure its a excel file only
try to create
Replace(Your Field,'ß',' ') as Youfield,
Can you post the load statement that loads that file?
BUt ß is not the only special character in that excel i have many such kind of special characters
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]);
i dont want to delete or replace the special character how can i get the output as "Dißerner Bruch 81 " ?