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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Dynamic woking of flag on expression based on

We have a table with entries name, company, event, event attended, flag_attended,

Name company event event attended flag attendedyear
Axcrayes1

2016

bxbeno02016
Abctno02017
cxbwyes12017
Axcrasno02017

we want to create a flag which will identify set of individuals who never attended &

example: for A of company XC when we select year as 2016 then flag never attended is 0, for 2017 it should 1,

when nothing is selected it should be 0.

How to write it in QlikView expression so that the value of the flag is determined on runtime dynamically when the user select year filter??

2 Replies
m_woolf
Master II
Master II

What's the difference between Event Attended and Flag Attended?

antoniotiman
Master III
Master III

Try this

Aggr(If(Min([flag attended]) = 0,1,0),Name,company)