Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hello,
I'm working with a database pull that has a status column as items are revised. Start, middle, complete.
As they're going through the revision proces and are at step two, step three isn't complete. How can I tell what items have all three statuses and use it in calculations
Solved! Go to Solution.
Hi @Anonymous
Assume you have a table as below:
Create measures
count_status = CALCULATE(DISTINCTCOUNT('Table'[status]),ALLEXCEPT('Table','Table'[id]))
This measure count the numbers of status for each item.
then you can use the measure above to calculate how many items have all three statuses.
use in calculation = CALCULATE(DISTINCTCOUNT('Table'[id]),FILTER(ALLSELECTED('Table'),'Table'[count_status]=3))
Hi @Anonymous
Assume you have a table as below:
Create measures
count_status = CALCULATE(DISTINCTCOUNT('Table'[status]),ALLEXCEPT('Table','Table'[id]))
This measure count the numbers of status for each item.
then you can use the measure above to calculate how many items have all three statuses.
use in calculation = CALCULATE(DISTINCTCOUNT('Table'[id]),FILTER(ALLSELECTED('Table'),'Table'[count_status]=3))
@Anonymous you can create a measure like this to count # of status, if it is 3 then all steps are completed
Item Steps Completed =
CALCULATE ( COUNTROWS ( Table ) ,
ALLEXCEPT ( Table, Table[Item] ) ,
Table[Status] = "Start",
Table[Status] = "Middle",
Table[Status] = "Complete"
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@Anonymous sorry for some reason notifications are not working and I didn't know you replied to the post. Item is the column for which you want to check the Status
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 21 | |
| 20 | |
| 13 |
| User | Count |
|---|---|
| 59 | |
| 53 | |
| 40 | |
| 31 | |
| 26 |