This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi everyone! 😀 I'm a long time user of the forums, but a first time poster.
I have a situation where I have data coming from another system (Azure) - a source I can't change or adapt and I need to be able to count 'in progress' items to say what was being worked on at any given moment in time.
However things can sit idle for extended periods, so it's in progress but not 'active' so I can have the situation where there's no update/record to count -
For example item 1 is open in September, and is still open in November, so I need to infer that it was also open in October.
| ChangedDate | ID | Status | Month |
| 30/09/2022 | 1 | In progress | Sep 2022 |
| 30/11/2022 | 1 | In progress | Nov 2022 |
| 30/9/2022 | 2 | In progress | Sep 2022 |
| 30/10/2022 | 2 | In progress | Oct 2022 |
| 31/11/2022 | 2 | In progress | Nov 2022 |
However all I'm able to get is :
| Month | CountItems |
| Sep 2022 | 2 |
| Oct 2022 | 1 |
| Nov 2022 | 2 |
But what I want to see is:
| Month | CountItems |
| Sep 2022 | 2 |
| Oct 2022 | 2 |
| Nov 2022 | 2 |
Is there a way to get the last status to persist into the next month in the case that there's no actual update?
Thanks
Amy.
Hi @Amybot ,
you can create a measure as below to get it, please find the details in the attachment.
CountItems =
VAR _seldate =
SELECTEDVALUE ( 'Date'[Date] )
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[ChangedDate] <= _seldate )
)
In addition, you can refer the below blog to add the "missing" dates for per ID in Power Query Editor:
After you completed the above step, it will be easier to get the expected count...
Best Regards
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |