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

set analysis

i have a three field empname, year, permossion and i want a name of emp whose permossion flag is false for all three year.

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

try the exp below.

Concat(Aggr(If(Count(Distinct {<permossion={'false'}>} year)>2,empname), empname), ',')

i didn't checked the result of it

View solution in original post

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Try this

Concat({<permossion={'false'}>} empname, ',')

vipin_mishra479
Creator II
Creator II
Author

i want a emp name whose permossion flag is false for all three year

CELAMBARASAN
Partner - Champion
Partner - Champion

try the exp below.

Concat(Aggr(If(Count(Distinct {<permossion={'false'}>} year)>2,empname), empname), ',')

i didn't checked the result of it