Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I created a set expression to get a distinct count of member keys for Q2 2024, but it’s not working as expected. I’m using Qlik Sense on-premise, May 2023 version.
This is the set expression I wrote " Count(distinct({<QuarterYear={'Q2-2024'}>} Member_Key)) ".
Any help would be appreciated.
Adjust your expression by removing the parentheses from distinct () , there is no need, that should be enough:
Count(distinct {<QuarterYear={'Q2-2024'}>} Member_Key )
- Regards, Matheus
@Noor51 Just to avoid any errors always try New set analysis syntax
{<QuarterYear={'Q2-2024'}>}count( distinct Member_Key)
Adjust your expression by removing the parentheses from distinct () , there is no need, that should be enough:
Count(distinct {<QuarterYear={'Q2-2024'}>} Member_Key )
- Regards, Matheus
@Noor51 Just to avoid any errors always try New set analysis syntax
{<QuarterYear={'Q2-2024'}>}count( distinct Member_Key)
Superb, I like this solution!!!
Thanks I didn't know that I could do that.