Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everybody, I have the following question.
I have 3 columns: Manager; Scope & Status.
I need to create a measure to count the amount of Status ¨Completed¨, if column manager is a ¨non blank¨, and also a Scpoe ¨yes¨.
Have been trying different type of formulas without positive outcomes.
Thanks & regards!
Solved! Go to Solution.
But in the mean time try this : but add your table name where I have 'Table2'
Measure = CALCULATE(
COUNTROWS('Table2') ,
FILTER(
'Table2',
'Table2'[Status]="Completed"
&& 'Table2'[Scope]="Yes"
&& NOT ISBLANK('Table2'[Manager])
)
)
Can you please post a small sample of your data?
But in the mean time try this : but add your table name where I have 'Table2'
Measure = CALCULATE(
COUNTROWS('Table2') ,
FILTER(
'Table2',
'Table2'[Status]="Completed"
&& 'Table2'[Scope]="Yes"
&& NOT ISBLANK('Table2'[Manager])
)
)
Thanks a lot Phil!! worked perfectly!!
Hi @franorio
Try this:
[Measure] = CALCULATE( Countrows(YourTable), not ISBLANK(YourTable[Manager]),YourTable[Scope] = "Yes",YourTable[Status]="Completed")
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.