Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
paul123
Contributor II
Contributor II

Formula to show Yes or No based on three fields

I would like to use a formula to create a fourth column for the table below.  The column should reurn a yes if both the Maths SS and Reading SS are above 95 and the WR On Track is a yes.

paul123_0-1607442448060.png

Would really appreciate some help

1 Solution

Accepted Solutions
paul123
Contributor II
Contributor II
Author

Great - huge thanks.  All sorted.

View solution in original post

2 Replies
Primrose
Contributor III
Contributor III

Hi @paul123 

You may use If() & AND(). Something like If([Maths SS]>95 AND [Reading SS]>95 AND [WR On Track]='Y', 'Yes', 'No').

If you have access to the load script, I would recommend you to move that to the script. When you use If() on the front-end, this results in a prolonged time for estimation and therefore loading the chart. By adding this to the script, you can optimize this. 

You may check other discussions about IF(). They'll help you understand better how this works in QS.

paul123
Contributor II
Contributor II
Author

Great - huge thanks.  All sorted.