Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi Experts,
I have a table of cars and thier Models (Which i have attached ). I am trying to get a count of only the cars that have the "Fault " Value in them. For example, Toyota should completely be excluded from the count in the 'Count of Car Model' since none of its cars have 'Fault' in the 'Car Model" column. So the result should be :Total Count should be "7" and toyota should not show up in the 'Cars" column at all.
Thanks in advance
Solved! Go to Solution.
Hi @alawode ,
You can write below measure for getting required output:-
Fault_Car =
VAR _max =
MAX ( Car_detail[Car] )
VAR result =
CALCULATE (
COUNTROWS ( Car_detail ),
FILTER (
ALL ( Car_detail ),
Car_detail[Car] = _max
&& Car_detail[Model] = "fault"
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
Output:-
As you can see total not showing correct so for that you need to write another measure:-
Corrected_total =
SUMX (
SUMMARIZE ( Car_detail, Car_detail[Car], Car_detail[Model], "Sum", [Fault_Car] ),
[Sum]
)
Output:-
Note:- Both measure need to create to get a final ouput.
Thank you,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @alawode ,
You can write below measure for getting required output:-
Fault_Car =
VAR _max =
MAX ( Car_detail[Car] )
VAR result =
CALCULATE (
COUNTROWS ( Car_detail ),
FILTER (
ALL ( Car_detail ),
Car_detail[Car] = _max
&& Car_detail[Model] = "fault"
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
Output:-
As you can see total not showing correct so for that you need to write another measure:-
Corrected_total =
SUMX (
SUMMARIZE ( Car_detail, Car_detail[Car], Car_detail[Model], "Sum", [Fault_Car] ),
[Sum]
)
Output:-
Note:- Both measure need to create to get a final ouput.
Thank you,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
@Samarth_18 Thanks for the help, quick question, for some reason the formula is not picking up 20 cars in the bigger table, and all of them have "fault", do you know how to tweak the expression to recify the issue? Thanks
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
23 | |
21 | |
20 | |
14 | |
12 |
User | Count |
---|---|
43 | |
31 | |
25 | |
22 | |
22 |