Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
David_K
Creator
Creator

Change text in STRING to be more understandable

Hello everyone (again 😁)

Requesting some help on how to change the contents of a STRING in a column of data. 

I have a column of data that contains 4 main comments, 3 of which are fully understandable to the reader of the report, however I need to revise the text for the 4th comment i.e.: change "DongleBerry" to "Strawberry"

In another visualization tool I would just use an IF statement - IF([Column A] = "DongleBerry" THEN "Strawberry" ELSE [Column A]) END, but I cant find a similar function in QLIK.

Can I please ask for your guidance on how to solve this.

Many Thanks

David 

Labels (4)
1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

try this

 IF([Column A] = 'DongleBerry', 'Strawberry' , [Column A])   as YourCoulmn

 

View solution in original post

1 Reply
Chanty4u
MVP
MVP

try this

 IF([Column A] = 'DongleBerry', 'Strawberry' , [Column A])   as YourCoulmn