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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live 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.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 110 | |
| 59 | |
| 39 | |
| 32 |