March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi, I made this basic measure to cumulative SUM a value over the months:
But when I filter by month, both items with no data that month disappear:
I think I'm missing something obvious but I can't make it work...
Thank you!!!
Solved! Go to Solution.
Hello @Greg_Deckler !
Thank you for the reply but I might not explained myself.
With your solution it shows the categories but with a 0 as value, what i was expecting is the running total value even when the month has no data for that category:
This is what I want when I filter by month:
Thank you!!
I ended up making it work by creating a calculated table with summarizecolumns (month and category) and +0 for months with no data, and then a measure over it with MAX since the value will never decrease.
Not 100% happy because I'm pretty sure it's a better way of doing this but at least I got it working.
Thank you!!
Hello @Greg_Deckler !
Thank you for the reply but I might not explained myself.
With your solution it shows the categories but with a 0 as value, what i was expecting is the running total value even when the month has no data for that category:
This is what I want when I filter by month:
Thank you!!
I ended up making it work by creating a calculated table with summarizecolumns (month and category) and +0 for months with no data, and then a measure over it with MAX since the value will never decrease.
Not 100% happy because I'm pretty sure it's a better way of doing this but at least I got it working.
Thank you!!
@DidacBF Try:
CALCULATE (
DISTINCTCOUNTNOBLANK(PDV[ID pdv]),
'Respuestas - PLV'[Colocado]=1,
FILTER (
ALL ( Calendario[Fecha visita] ),
Calendario[Fecha visita] <= MAX ( ( Calendario[Fecha visita] ) )
)
) + 0
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |