Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I have problem with how i should model my data for the waterfall chart, which has information of different people showing how many citations they have gained over the years. In the chart it shows the values of each year but it only does in increment.
And i need it to kinda look like this.
Heres a sample of how the data looks
Should i somehow make a Measure that calculates the difference of the previous year and put it as a breakdown or just remodel my table to fit more the waterfall chart.
Solved! Go to Solution.
Hi @Pas58 ,
When the value of y-axis is negative, it will show decrease.
Therefore, you need to place your current value on the y axis to compare the change amount of the previous value, if the amount of change is negative, then it will show a decrease and turn red.
For example, putting the count of id will not show an increase or decrease effect, you need to create a measure to get the difference.
Measure = COUNT('Table'[author_id])-CALCULATE(COUNT('Table'[author_id]),FILTER(ALLSELECTED('Table'),[year]=MAX('Table'[year])-1))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Pas58 ,
When the value of y-axis is negative, it will show decrease.
Therefore, you need to place your current value on the y axis to compare the change amount of the previous value, if the amount of change is negative, then it will show a decrease and turn red.
For example, putting the count of id will not show an increase or decrease effect, you need to create a measure to get the difference.
Measure = COUNT('Table'[author_id])-CALCULATE(COUNT('Table'[author_id]),FILTER(ALLSELECTED('Table'),[year]=MAX('Table'[year])-1))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It wasn't exactly the solution but with your insight and explanation of how the waterfall chart works i was able to resolve my problem, thanks!
Still new to PowerBI.
User | Count |
---|---|
121 | |
72 | |
71 | |
57 | |
50 |
User | Count |
---|---|
167 | |
83 | |
68 | |
65 | |
55 |