Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |