Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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 (1)
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