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: 
smanas
Contributor III
Contributor III

If statement Exact match on a range of data

Hello I'm trying to creating a filter using an exact match please advise the correct if statement to use

 

If(match(ABCD,('A1','A2','A3','A4',),'Yes','No')

Kindly correct my code thank you

Labels (1)
1 Reply
Rockstar7
Partner - Creator
Partner - Creator

@smanas  need to provide brackets correctly . try below one

 

If(match(ABCD, 'A1','A2','A3','A4'), 'Yes', 'No')