Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
The subject title is a bit random because I genuinely don't know how to explain the issue otherwise - if you can suggest a clearer title please let me know.
In this data set each record (ID#) has consecutive steps that take place in chronological order (In process step 1 > in process step 2 > approval step). Each step has a user assigned to complete the step. "in process step 2" is the last step before approval, the people that sign off "in process step 2" are the effective owners of the record. So it doesn't matter who was on the previous steps or the approval steps , the owner(s) are always the people at "in process step 2."
Taking record ID# IN3 as an example, George and Jerry are both owners of the record because they signed off In process step 2. The record is now overdue, because it was due for closure on 03 oct 22. In my current dashboard IN3 does not appear under George and Jerry's overdue records because the record does not sit with them anymore since they have signed off the task and it is now with Claire and Rob at the approval step.
I need to show (either in another column or table) that George and Jerry have an overdue record which is at the approval step.
note that any number of people can sign off "in process step 2" so there can be any number of record "owners"
Solved! Go to Solution.
You could create a table like
Overdue records =
VAR OverdueIDs =
CALCULATETABLE (
VALUES ( 'Table'[ID #] ),
'Table'[Step] = "approval step",
'Table'[Step Status] = "in process",
'Table'[Due date] < TODAY ()
)
RETURN
CALCULATETABLE (
SUMMARIZE ( 'Table', 'Table'[ID #], 'Table'[User], 'Table'[Due date] ),
OverdueIDs,
'Table'[Step] = "in process step 2"
)
You could create a table like
Overdue records =
VAR OverdueIDs =
CALCULATETABLE (
VALUES ( 'Table'[ID #] ),
'Table'[Step] = "approval step",
'Table'[Step Status] = "in process",
'Table'[Due date] < TODAY ()
)
RETURN
CALCULATETABLE (
SUMMARIZE ( 'Table', 'Table'[ID #], 'Table'[User], 'Table'[Due date] ),
OverdueIDs,
'Table'[Step] = "in process step 2"
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |