March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Register NowGet certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
114 | |
78 | |
75 | |
58 | |
56 |
User | Count |
---|---|
130 | |
104 | |
96 | |
69 | |
68 |