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
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!
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 |