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

Join 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.

Reply
Dave21
New Member

Not able to get the previous day stock quantity into the curent day if the current day has no stock.

Hello All, I am struggling to get the previous day stock quantity into the current day where it has no stock. Basically its a comparison between actual and previous day stock quantity. Will get to know better by screenshots.

Dave21_0-1692799924130.png

For eg: For example 25th june should show the stock as 16,17,17,669.00 as 22,23,24 june had no stock. Can anyone please help/suggest me a dax code for this , i have been trying to make a new measure for this problem.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Dave21,

You can extract the current date and use it as condition to find out the previous records with stock not equal to blank, then you can and use this result to show on the blank parts.

formula =
VAR currDate =
    MAX ( Table1[Pay day] )
VAR prevDate =
    CALCULATE (
        MAX ( Table1[Pay day] ),
        FILTER ( ALLSELECTED ( Table1 ), [Stock] > 0 )
    )
RETURN
    CALCULATE (
        SUM ( Table1[Stock] ),
        FILTER ( ALLSELECTED ( Table1 ), [Pay day] = prevDate )
    )

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @Dave21,

You can extract the current date and use it as condition to find out the previous records with stock not equal to blank, then you can and use this result to show on the blank parts.

formula =
VAR currDate =
    MAX ( Table1[Pay day] )
VAR prevDate =
    CALCULATE (
        MAX ( Table1[Pay day] ),
        FILTER ( ALLSELECTED ( Table1 ), [Stock] > 0 )
    )
RETURN
    CALCULATE (
        SUM ( Table1[Stock] ),
        FILTER ( ALLSELECTED ( Table1 ), [Pay day] = prevDate )
    )

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.