Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
How do I create DAX that finds the percent of incidents that are Status=Closed based on row view
Sample data from Power Pivot.
Total Incidents = Count of CREATED_DATE
I tried following Measure both gave error
% Closed:=if(Table1[STATUS]="Closed",[Count of CREATED_DATE],0)/[Count of CREATED_DATE]
and
% Closed2:=DIVIDE(if(Table1[STATUS]="Closed",[Count of CREATED_DATE],0),[Count of CREATED_DATE],0)
Here is my table
Here is what I wish to create. Please note, the % of Closed Incidents to Total should change based on how I filter the power-pivot, i.e. if I filter to include ONLY closed incidents, then naturally the % should be 100%
Solved! Go to Solution.
@QQQ,
You can create the following measures in your table.
Total incidents = COUNT(Table[CREATE_DATE])
Count of closed = CALCULATE(COUNT(Table[CREATE_DATE]),FILTER(Table,Table[STATUS]="Closed"))
%closed = [Count of closed]/[Total incidents]
If you have questions about the DAX, please share raw data of your table that can be copied and pasted, I will test it in my environment.
Regards,
Lydia
@QQQ,
You can create the following measures in your table.
Total incidents = COUNT(Table[CREATE_DATE])
Count of closed = CALCULATE(COUNT(Table[CREATE_DATE]),FILTER(Table,Table[STATUS]="Closed"))
%closed = [Count of closed]/[Total incidents]
If you have questions about the DAX, please share raw data of your table that can be copied and pasted, I will test it in my environment.
Regards,
Lydia
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |