Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
The following measure shows the same total for each person
SI Team =
CALCULATE(
[All Cases],
Owners[Name] IN {"Ian Bloggs", "Siobhan Bloggs", "George Best", "Billy Chaplin"})
When I add KEEPFILTERS to fix the measure I get the following error - any ideas how to fix this?
SI Team =
CALCULATE(
KEEPFILTERS(
[All Cases]),
Owners[Name] IN {"Ian Bloggs", "Siobhan Bloggs", "George Best", "Billy Chaplin"})
I'm guessing this has something to do with the Team structure hierarchy?
Thanks
Solved! Go to Solution.
The KEEPFILTERS function goes around the filter argument, not the measure.
Try this instead:
SI Team =
CALCULATE (
[All Cases],
KEEPFILTERS ( Owners[Name] IN { "Ian Bloggs", "Siobhan Bloggs", "George Best", "Billy Chaplin" } )
)
The KEEPFILTERS function goes around the filter argument, not the measure.
Try this instead:
SI Team =
CALCULATE (
[All Cases],
KEEPFILTERS ( Owners[Name] IN { "Ian Bloggs", "Siobhan Bloggs", "George Best", "Billy Chaplin" } )
)
Thanks, that works!👍
What is the dax inside your measure namec All Cases?
All Cases =
DISTINCTCOUNT('Cases'[Case Number]
)
User | Count |
---|---|
117 | |
75 | |
62 | |
50 | |
44 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |