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.
Hello,
Hope you are doing well.
in the below screenshot how to write the DAX query to find ...
1> How many [account Id] are only owner (ans = 1, ie a1)
2> How many [account Id] are only user (ans = 1, ie c3)
3> How many [account Id] are only user and owner (ans = 1, ie b2)
note : all the a1 are having type owner. c3 is having type user. b2 is having both user and owner.
Hope this will help. Hope this question make sence. Incase don't, then just let me know.
Solved! Go to Solution.
1) Owners =
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(EXCEPT(_Owner, _User))
2) User =
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(EXCEPT(_User, _Owner))
3) both=
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(INTERSECT(_Owner, _User))
Create 3 table visuals with the Table[Account[ID] field and add each measure to each table visual (1 measure per table) and set the Value as equal to 1
Proud to be a Super User!
Paul on Linkedin.
1) Owners =
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(EXCEPT(_Owner, _User))
2) User =
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(EXCEPT(_User, _Owner))
3) both=
VAR _Owner = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "Owner")
VAR _User = CALCULATETABLE(VALUES(Table[Account ID), Table[Type] = "User")
RETURN
COUNTROWS(INTERSECT(_Owner, _User))
Create 3 table visuals with the Table[Account[ID] field and add each measure to each table visual (1 measure per table) and set the Value as equal to 1
Proud to be a Super User!
Paul on Linkedin.
Thank you Paul. It works flawless.
Regards,
Kunal
@Seanan Hi,
Thanks for the respond.
no for the above senario it would be 1.
i have modified the senario. here i have insert d4 and e5.
1> How many [account Id] are only owner (ans = 1, ie a1,d4,e5)
2> How many [account Id] are only user (ans = 1, ie c3)
3> How many [account Id] are only user and owner (ans = 1, ie b2)
similarly i can add users too. Hope you got the point.
Hi @Anonymous
I'm a little bit confused by the outcome you are looking for here. For all 3 of the measures you'd like you said the answer = 1, and that all a1 are owner, c3 are type and b2 are both. Wouldn't this mean that your outcome would always be 1?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
87 | |
66 | |
52 | |
45 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |