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

QlikSense showing &amp for &

I have a field in the database that is a nvarchar (sql server) with the value

J & A Services Inc/Painting & Design

When it is displayed in qlik it is showing up as

J & A Services Inc/Painting & Design

How do I fix this?

Labels (1)
1 Reply
SpaceBase3000
Partner - Contributor II
Partner - Contributor II

Hi,

I think this is more a SQL case than a Qlik case.

Try to use this to get rid of the problem before you extract to Qlik. 

select @str = replace(@str, '&', '&')

 https://stackoverflow.com/questions/10618211/why-does-sql-display-an-as-amp

 

Brgds