Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register 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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 64 | |
| 31 | |
| 26 | |
| 25 |