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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 110 | |
| 50 | |
| 32 | |
| 29 |