Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Everyone!
I want to combine cumulative data and a filter of month in a report so that I could show in a graph or table the sum of amount till the month that I filtered.
I mean, if I filter by May I don´t want to see only May, I want to show January, February and May.
There is any way?
Thanks!
Solved! Go to Solution.
@Anonymous
With the slicer visual, you cannot do it now. There is no way to create a dynamic month column/table according to your selection in the slicer.
However, you can try to use the Timeline visual. Just drag the progress bar to include January to May.
I create a calendar table and a cumulative measure with following formulas. And create relationship between Calendar and Table1 with Date key.
Calendar = CALENDAR ( "1/1/2016", "12/31/2016" )
Cumulative = IF ( SUM ( Table1[Number] ) <> BLANK (), CALCULATE ( SUM ( Table1[Number] ), FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ) ) )
Best Regards,
Herbert
@Anonymous
With the slicer visual, you cannot do it now. There is no way to create a dynamic month column/table according to your selection in the slicer.
However, you can try to use the Timeline visual. Just drag the progress bar to include January to May.
I create a calendar table and a cumulative measure with following formulas. And create relationship between Calendar and Table1 with Date key.
Calendar = CALENDAR ( "1/1/2016", "12/31/2016" )
Cumulative = IF ( SUM ( Table1[Number] ) <> BLANK (), CALCULATE ( SUM ( Table1[Number] ), FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ) ) )
Best Regards,
Herbert
User | Count |
---|---|
84 | |
79 | |
69 | |
46 | |
43 |
User | Count |
---|---|
106 | |
50 | |
49 | |
40 | |
39 |