Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |