Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
70 | |
66 | |
50 | |
31 |
User | Count |
---|---|
116 | |
99 | |
75 | |
65 | |
40 |