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

Multiple IF Statements?

Hi all,

I have a column of data that shows ratings as 'A' thru 'F', but I need to show them with a comment:

A - Excellent / B - Good / C - Average etc.

I have tried IF, AND, as well as IF, OR but still cannot get a workable solution

In another applications I would "IF, THEN, ELSEIF"

Hoping I ca get some guidance here.

Many thanks in advance

1 Solution

Accepted Solutions
Or
MVP
MVP

If(Column1='A','A - Excellent','if(Column1='B','B - Excellent',...))

You could also use Pick/Match to achieve the same result without the nested if() statements.

View solution in original post

1 Reply
Or
MVP
MVP

If(Column1='A','A - Excellent','if(Column1='B','B - Excellent',...))

You could also use Pick/Match to achieve the same result without the nested if() statements.