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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.