Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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.
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 | |
| 63 | |
| 48 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 118 | |
| 117 | |
| 38 | |
| 36 | |
| 27 |