Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
sanjujeeboy
Creator
Creator

how to find special characters

Hi 

I have a field called list, My requirement is if a field value consists of '_' then return that value else Null. how to acheive this. Ex for the below dimension, NA and canvas should return null and the other two as it is.

 

List
17_us_en_5f2879
Canvas
18_at_de_545456
NA

 

Thanks

Labels (3)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

Load  If(Index(List, '_'), List, 'NA') as NewList

View solution in original post

1 Reply
tresesco
MVP
MVP

Load  If(Index(List, '_'), List, 'NA') as NewList