Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
jalaomar
Helper IV
Helper IV

Count rows based on filters

Hello,

 

Would like to count number of rows with the following conditions 

Duration >= 45 AND Percent Complete >= 1% where Tollgate Phase is Blank

 

Tried the following measure but doesn't seem to work (didn't add condition that tollgate phase should be blank)

#project with perc = CALCULATE(
COUNTROWS('Governance Dimesions'),
FILTER('Dimesions', 'Dimesions'[Schedule Duration] >= 45 || 'Dimesions'[Governance[PertentageCompletedActual]]] > 1 ))
 
anybody who knows how to manage?
 
2022-10-31_14-46-39.png
1 ACCEPTED SOLUTION
Bifinity_75
Solution Sage
Solution Sage

Hi @jalaomar , you can create a calculate column:

Bifinity_75_0-1667227568499.png

Column = if('Table'[Tollgate Phase]=blank() && 'Table'[Duration]>=45 && 'Table'[%]>=0.01,1,0)
 
The sum of this calculate column is the result,
 
Best regards
 
 

View solution in original post

1 REPLY 1
Bifinity_75
Solution Sage
Solution Sage

Hi @jalaomar , you can create a calculate column:

Bifinity_75_0-1667227568499.png

Column = if('Table'[Tollgate Phase]=blank() && 'Table'[Duration]>=45 && 'Table'[%]>=0.01,1,0)
 
The sum of this calculate column is the result,
 
Best regards
 
 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.