Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
stribor45
Post Prodigy
Post Prodigy

Comparing the data between multiple years

I need a creative way to compare data between multiple years of data. currently I have data for 2021, 2022, 2023, 2024 and 2025. For each of these years we have number of tickets we received and how many we resolved. So I want to show how much in percentage or some other visual marker that will give quick overview how much we improved (or not) between each year.

 

Just a note I am hoping for something more then just just bar charts. If you have ideas how worked for you or video tutorial would be great. 

1 ACCEPTED SOLUTION
anuragccsu
Frequent Visitor

I'd recommend - "Variance Waterfall Chart with Percentage Change"
This approach uses a Waterfall Chart and a calculated Percentage Change measure to clearly show the year-over-year (YoY) movement in your resolution rate.
 
Step 1. First, calculate the base rate for each year.
Resolution Rate = Number of Tickets Resolved /Number of Tickets Received
Resolution Rate = DIVIDE(SUM('YourTable'[Tickets Resolved]), SUM('YourTable'[Tickets Received]), 0)
 
Step 2. Create the Year-over-Year Change Measure
YoY Resolution Rate Change % =
VAR CurrentRate = [Resolution Rate]
VAR PreviousRate =
CALCULATE(
[Resolution Rate],
DATEADD('YourTable'[DateColumn], -1, YEAR)
)
RETURN
DIVIDE(CurrentRate - PreviousRate, PreviousRate, 0)
 
Step 3: Visualize with a Waterfall Chart
Axis: Year ('YourTable'[Year])
Values: Your base Resolution Rate measure.
Breakdown: Use your YoY Resolution Rate Change % measure.

View solution in original post

3 REPLIES 3
anuragccsu
Frequent Visitor

I'd recommend - "Variance Waterfall Chart with Percentage Change"
This approach uses a Waterfall Chart and a calculated Percentage Change measure to clearly show the year-over-year (YoY) movement in your resolution rate.
 
Step 1. First, calculate the base rate for each year.
Resolution Rate = Number of Tickets Resolved /Number of Tickets Received
Resolution Rate = DIVIDE(SUM('YourTable'[Tickets Resolved]), SUM('YourTable'[Tickets Received]), 0)
 
Step 2. Create the Year-over-Year Change Measure
YoY Resolution Rate Change % =
VAR CurrentRate = [Resolution Rate]
VAR PreviousRate =
CALCULATE(
[Resolution Rate],
DATEADD('YourTable'[DateColumn], -1, YEAR)
)
RETURN
DIVIDE(CurrentRate - PreviousRate, PreviousRate, 0)
 
Step 3: Visualize with a Waterfall Chart
Axis: Year ('YourTable'[Year])
Values: Your base Resolution Rate measure.
Breakdown: Use your YoY Resolution Rate Change % measure.
pankajnamekar25
Super User
Super User

Hello @stribor45 

 

Try these options

Ribbon Chart – shows how each year’s performance rank changes over time.
Small Multiples / KPI Panels – mini visuals for each year showing % change vs. previous year.
YoY % Change Line Chart – plots annual improvement or decline in resolution rate.
Gauge Chart – shows each year’s resolution efficiency against a 100% target.
Animated Play Axis Chart – visualizes how metrics evolve year by year.
Bullet Chart – compares resolved tickets against received with clear benchmarks.
Efficiency Score / Heatmap – custom index showing improvement intensity by color.
Up/Down Arrow Indicators – simple visual cue for better or worse performance vs. prior year.

 


If my response helped you, please consider clicking
Accept as Solution and giving it a Like 👍 – it helps others in the community too.


Thanks,


Connect with me on:

LinkedIn

 

watch this They offer very different visuals there.

https://www.excelnaccess.com/sparklines/

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.