Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
School Name | Programme Participated | Date |
School A | Programme 1 | 2017 |
School A | Programme 2 | 2017 |
School A | Programme 3 | 2017 |
School B | Programme 1 | 2017 |
School B | Programme 2 | 2017 |
School C | Programme 1 | 2017 |
School C | Programme 3 | 2017 |
School D | Programme 1 | 2017 |
I would like to create a "Programme Filter" that allows me to filter by these conditions :
a ) atleast participated in one programme
b) atleast participated in two programme
c) participated in all programme
If i select option C from the filter, i would like it to apply filter on the "count of distinct school" . In this case , it should be only 1.
If i select option B from the filter, i would like it to apply filter on the "count of distinct school". In this case, it should show only 3.
Thanks in advance!
hi
this should allow you to create the filter
=aggr(if(count(distinct [Programme Participated])=count({1}total distinct [Programme Participated]) ,'All programs',
if(count(distinct [Programme Participated])>=2 ,'At least 2',
if(count(distinct [Programme Participated])>=1 ,'At least 1'))),[School Name])h