Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi everyone!
I have a database of every movement of every product our company owns. This means that if I make a cumulative sum meassure, I get the stock at every point in time, of any article. What I want now is a meassure that calculates how many times a product hits 0 in any given period of time. I want, however, this meassure to be completely adaptable to any filter and context it is applied to. If I show it in a graph where I show the frequency of this event, but for a Brand with more than one product, I want it to show how many times each article hits 0. I also need this to work in a simple card, where if I select a time interval and a brand or group of products, it needs to tell me how, for every product and every date, how many times the stock was 0.
Here is my current progress, where I try to achieve this via a summarize table, but as you can see, it won´t do a cummulative sum and so I can´t proceed with the measure.
I don´t know if this is the way, but I will accept any solution to this problem.
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
I think you can try EARLIER() function to calculate stock value.
Tabla =
SUMMARIZE (
FILTER ( 'Movimientos de Stock', 'Movimientos de Stock'[CodArt] = 'ALCA04' ),
'Unificador'[Codigo 1],
'Calendar'[Date],
"Stock",
CALCULATE (
SUM ( 'Movimientos de Stock'[Cantidad] ),
FILTER (
'Movimientos de Stock',
'Movimientos de Stock'[CodArt] = EARLIER ( [CodArt] )
&& 'Movimientos de Stock'[Date] <= EARLIER ( [Date] )
)
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I think you can try EARLIER() function to calculate stock value.
Tabla =
SUMMARIZE (
FILTER ( 'Movimientos de Stock', 'Movimientos de Stock'[CodArt] = 'ALCA04' ),
'Unificador'[Codigo 1],
'Calendar'[Date],
"Stock",
CALCULATE (
SUM ( 'Movimientos de Stock'[Cantidad] ),
FILTER (
'Movimientos de Stock',
'Movimientos de Stock'[CodArt] = EARLIER ( [CodArt] )
&& 'Movimientos de Stock'[Date] <= EARLIER ( [Date] )
)
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 31 | |
| 27 | |
| 24 |