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

Use yearaverage as target line

Hi all,

 

i'm facing a new issue. The customer would like to see the average of 2 years ago as a constant targetline in the chart. 

So i created the average of 2 years ago:

 

Norm eigenvertraging = 
    CALCULATE(AVERAGE('Vertraging'[eigenvertraging])
    ,DATEADD('Date'[Date], -2, YEAR)
    )

But when i use this, it obviously shows the average per week in the chart. I tried using ALL, ALLSELECTED but no luck unfortunately

So my question is: How can i turn this into the average over the whole year so i can use it as a targetline?

 

Tnx!

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , Try like

 

Norm eigenvertraging =
var _1 = maxx(allselected('Date'), 'Date'[Date])
var _2= year(_1) -2
return
CALCULATE(AVERAGE('Vertraging'[eigenvertraging])
,filter(all('Date') year('Date'[Date]) = _2
))

View solution in original post

v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

You could try the following measure:

TEST1 = 
VAR LASTTWOYEARDAY =
    DATE ( YEAR ( TODAY () ) - 2, MONTH ( TODAY () ), DAY ( TODAY () ) )
VAR TEST1 =
    CALCULATE (
        AVERAGE ( Vertraging[eigenvertraging] ),
        FILTER (ALL('Date'),'Date'[Date]<=LASTTWOYEARDAY)
    )
RETURN
    TEST1

vluwangmsft_0-1629269522606.png

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

 

Best Regards

Lucien

View solution in original post

2 REPLIES 2
v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

You could try the following measure:

TEST1 = 
VAR LASTTWOYEARDAY =
    DATE ( YEAR ( TODAY () ) - 2, MONTH ( TODAY () ), DAY ( TODAY () ) )
VAR TEST1 =
    CALCULATE (
        AVERAGE ( Vertraging[eigenvertraging] ),
        FILTER (ALL('Date'),'Date'[Date]<=LASTTWOYEARDAY)
    )
RETURN
    TEST1

vluwangmsft_0-1629269522606.png

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

 

Best Regards

Lucien

amitchandak
Super User
Super User

@Anonymous , Try like

 

Norm eigenvertraging =
var _1 = maxx(allselected('Date'), 'Date'[Date])
var _2= year(_1) -2
return
CALCULATE(AVERAGE('Vertraging'[eigenvertraging])
,filter(all('Date') year('Date'[Date]) = _2
))

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.