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

dashboard is showing French character é as" ? "

on the dashboard French character is showing é as ?  any suggestion why it happens and how we can handle this?

Capture.PNG

1 Reply
balabhaskarqlik

Try to use the UTF-8 unicode

Or

Create second Table with Nvarchar Type In sql server as this:

IF EXISTS(SELECT * FROM   NewTbl)

DROP TABLE NewTbl

SELECT

field1,field2,,

convert(nvarchar(50),Field3) Field3

INTO [MyDb].dbo.NewTbl

FROM [MyDb].dbo.PreviousTbl;