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

Data Clean Up

I have the following two fields that need to be displayed in a table. Upon using the following statement I get the necessary info(2nd picture) but the two characters I specified can change (_CparDu,_ZfvvFH). On the 3rd line you see I need to display both high and low as it is a checkbox option.

if(Type='checkbox',PurgeChar(PurgeChar(PurgeChar(Answer,'"'),'_CparDu'),'_ZfvvFH')

Capture.PNG

Please Help

1 Solution

Accepted Solutions
MarcoWedel

Hi,

one solution could be:

Replace(Trim(If(WildMatch(Answer,'*Low*'),'Low ')&If(WildMatch(Answer,'*High*'),'High')),' ',',')

QlikCommunity_Thread_146289_Pic1.JPG

hope this helps

regards

Marco

View solution in original post

3 Replies
MarcoWedel

Hi,

one solution could be:

Replace(Trim(If(WildMatch(Answer,'*Low*'),'Low ')&If(WildMatch(Answer,'*High*'),'High')),' ',',')

QlikCommunity_Thread_146289_Pic1.JPG

hope this helps

regards

Marco

Not applicable
Author

Thank you MarcoWedel

MarcoWedel

You're welcome

Regards

Marco