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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Arthur_NS
Helper I
Helper I

Matrix - Icon for evolution

Hello,

 

I'd like to know if it was possible to add icons based on evolution in a Matrix.
In the example below, I added the icons from the "cell element" section but they are currently based on some random % rule

 

What I would like to see is the icon based on the previous Year.
So if the Hours viewed from 2023 are larger than 2022, I want to see a green upward arrow in the 2023.
Same for 2022 vs 2021, 2021 vs 2020 and so on

 

Arthur_NS_0-1679407045236.png

 

Thank you,

Arthur

 

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@Arthur_NS Should be possible by creating a measure that compares the current year to the previous year. To be more specific would need sample data or more information. If you years are numeric then maybe this:

Measure = 
  VAR __Year = MAX('Table'[Year])
  VAR __Current = SUM('Table'[Hours viewed])
  VAR __Previous = SUMX(FILTER(ALL('Table'), [Year] = __Year - 1), [Hours viewed])
  VAR __Diff = __Current - __Previous
  VAR __Result = 
    SWITCH(TRUE(),
      __Diff > 0, 1,
      __Diff < 0, 2,
      3
    )
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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.