Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello I have a table similar to the table below. I am trying to create a measure that calculates the rows that have completions dates for the West Area.
| Item | Area | Completion Date |
| XX | West | 5/21/2019 |
| YY | West | |
| ZZ | South | 5/22/2019 |
I would like this measure to return 1 in this simple example
Solved! Go to Solution.
Do you want to calculate the row number of West Area which has Completion Date? You can also create a measure and drag the measure to the card visual:
Result = COUNTX(FILTER(Table1, Table1[Completion Date] <> BLANK() && Table1[Area] = "West"), Table1[Item])
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Do you want to calculate the row number of West Area which has Completion Date? You can also create a measure and drag the measure to the card visual:
Result = COUNTX(FILTER(Table1, Table1[Completion Date] <> BLANK() && Table1[Area] = "West"), Table1[Item])
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Drag Area to the Row labels and write this measure
=COUNT(Data[Completion Date])
Hope this helps.
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.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |