Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Amybot
New Member

Help inferring an item's status when there is no existing data point

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. 

ChangedDateIDStatusMonth
30/09/20221In progressSep 2022
30/11/20221In progressNov 2022
30/9/20222In progressSep 2022
30/10/20222In progressOct 2022
31/11/20222In progressNov 2022

 

However all I'm able to get is :

MonthCountItems
Sep 20222
Oct 20221
Nov 20222

 

But what I want to see is:

MonthCountItems
Sep 20222
Oct 20222
Nov 20222


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.

1 REPLY 1
Anonymous
Not applicable

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 )
    )

 

yingyinr_2-1677233260276.png

In addition, you can refer the below blog to add the "missing" dates for per ID in Power Query Editor:

Generating Rows by Month for Date Ranges in Power Query | by Daniel Marsh-Patrick | Daniel Marsh-Pat...

yingyinr_0-1677232205132.png

After you completed the above step, it will be easier to get the expected count...

Best Regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.