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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Create Average Line per year in Combined Line and Stacked Column Chart

Hi,

 

I want to create an average line which shows different value per year in a combined line and stacked column chart. The visualization will be like below chart. The table is "Notification". The y value is [Notif Count] and the legend is [Decision Status].

toontr_0-1613402593131.png

 

Thank you for your help.

Regards,

Vano

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try the following formula to create a measure:

line =
SWITCH (
    YEAR ( MAX ( 'Table'[Date] ) ),
    2018,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2018 )
        ),
    2019,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2019 )
        ),
    2020,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2020 )
        )
)

Open Shapes--> "Stepped" button, the final output is shown below:

2.17.6.1.PNG

 

Here is the pbix file.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try the following formula to create a measure:

line =
SWITCH (
    YEAR ( MAX ( 'Table'[Date] ) ),
    2018,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2018 )
        ),
    2019,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2019 )
        ),
    2020,
        CALCULATE (
            AVERAGE ( 'Table'[Notif Count] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = 2020 )
        )
)

Open Shapes--> "Stepped" button, the final output is shown below:

2.17.6.1.PNG

 

Here is the pbix file.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Create measure like

calculate(Average(Table[Value]), allexcept(Table, Table[Year]))

or

calculate(Average(Table[Value]),filter(allselected(Table), Table[year] =max(Table[Year])))

calculate(Average(Table[Value]), removefilters([Decision Status]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.