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
Hello,
See below table for your reference.
1. Remove Blanks from the Date Column
2. Remove Blanks from the Amount Column
3. Count total Status. In this case it is 10.
Now I need to calculate percentage to get result as 70%. In this case it will be Total 10 divided by Active (7).
Total Status count is 10 of which 7 are Active status.
Solved! Go to Solution.
Hi @E5254730 ,
Plese try below dax formula:
Measure =
VAR TMP =
FILTER (
ALL ( 'Table' ),
[Amount] <> BLANK ()
&& [Date] <> BLANK ()
)
VAR _A =
COUNTROWS ( TMP )
VAR _B =
COUNTROWS ( FILTER ( TMP, [Status] = "Active" ) )
RETURN
DIVIDE ( _B, _A )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @E5254730 ,
Please try below steps:
1. below is my test table
Table:
2. cretae a measure with below dax formula
Measure =
VAR TMP =
FILTER (
ALL ( 'Table' ),
[Amount] <> BLANK ()
&& [Date] <> BLANK ()
&& [Satus] <> BLANK ()
)
VAR _A =
COUNTROWS ( TMP )
VAR _B =
COUNTROWS ( FILTER ( TMP, [Satus] = "Active" ) )
RETURN
DIVIDE ( _B, _A )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
When we change few of the Dates (month) it shows 70% for all the months.
See below screen shot. Could not see an option to attach .pbix file.
Hi @E5254730 ,
Please try to use card visual.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
My new data is structured as below. Have added new months i.e. Jan to Dec.
My old data had only one date i.e. May 24th 2023.
Hi @E5254730 ,
Plese try below dax formula:
Measure =
VAR TMP =
FILTER (
ALL ( 'Table' ),
[Amount] <> BLANK ()
&& [Date] <> BLANK ()
)
VAR _A =
COUNTROWS ( TMP )
VAR _B =
COUNTROWS ( FILTER ( TMP, [Status] = "Active" ) )
RETURN
DIVIDE ( _B, _A )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please see the below tutorial and tweak the logic a bit to achieve what you want to.
Count Rows or Sum Columns based on single or Multiple conditions in PowerBI | MiTutorials - YouTube
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 |
---|---|
87 | |
87 | |
86 | |
67 | |
49 |
User | Count |
---|---|
134 | |
113 | |
100 | |
68 | |
67 |