Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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.
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.
Solved! Go to Solution.
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
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |