Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I've written an IF expression in Qlik Sense which evalutes a team name and uses a hard coded default:
if(Team='Asset Visualisation', YearlyTarget, if(Team='Asset Information', YearlyTarget, if(Team='Asset Data Development', YearlyTarget, 30000)))
As you can see this is a bit inefficient, and I'd like to have a NOT IN list to evaluate rather than typing the condition again and again. I've tried various syntatx but can't get it to work. Can someone plese steer me in the right direction?
Thank you
Neil
=if(match(Team, 'Asset Visualisation', 'Asset......', 'Asset.....'), YearlyTarget, 3000)
Use the Match function:
If( NOT Match(Team, 'Asset Visualisation', 'Asset Information','OTHERS','do','don't do')
=if(match(Team, 'Asset Visualisation', 'Asset......', 'Asset.....'), YearlyTarget, 3000)
Great! Thanks both for all your help!
Neil