Forum Discussion
Last & Days Waterfall Chart
Hi,
I need to create a waterfall chart for the Amounts for last seven days, this filter should change dynamically.
Can you let me know the solution for this.
Thanks
- Anonymous9 years ago
Hi Kpower,
You can also create a calculate table which filtered with last seven days, then use the filtered table as the source of waterfall chart'.
Sample:
Table 2 = FILTER(ALL(Table),[Date]>=LASTDATE(VALUES(Table[Date]))-7)
Regards,
Xiaoxin Sheng
5 Replies
- Vvelarde
Community Champion
hi, you can show the values in the last 7 days with this:
ValueShow = if(VALUES(Table1[Date])>TODAY()-7;CALCULATE(SUM(Table1[Value]));BLANK())
- AnonymousNot applicable
Hi Kpower,
You can also create a calculate table which filtered with last seven days, then use the filtered table as the source of waterfall chart'.
Sample:
Table 2 = FILTER(ALL(Table),[Date]>=LASTDATE(VALUES(Table[Date]))-7)
Regards,
Xiaoxin Sheng
- klabir
Helper V
Have a look at the PowerBI Ultimate Waterfall Chart
http://dataviz.boutique/2017/03/22/powerbi-ultimate-waterfall-custom-visual/