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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Carlaf_93
Creator II
Creator II

select values in script area

Good morning,

i have field named 'FILED1' that contains values like 'A1,A2,A3,B1,B2,B3...'

if i use this formula:

IF(MATCH(FILED1,'A1'),1,0) AS PIP,

i'm able to selct the value A1 throug PIP.

How cai i do if i want all elements starting with A?

Itried this... but doesn't work

IF(MATCH(FILED1,'A*'),1,0) AS PIP,

 

How can i do?

1 Solution

Accepted Solutions
Ivan_Bozov
Luminary
Luminary

IF(WILDMATCH(FIELD1,'A*'),1,0) AS PIP

vizmind.eu

View solution in original post

1 Reply
Ivan_Bozov
Luminary
Luminary

IF(WILDMATCH(FIELD1,'A*'),1,0) AS PIP

vizmind.eu