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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
tonny_bwg
Helper I
Helper I

Help - Year Average Calculation

Dears:
 I want to write a dax to calculate the average of 4 Quarters's value for previous Year,on the page , it has a slicer of Yearmonth, for example selecting 202307, I want to show 2022 year average in card. I got blank in the card with below codes. does anyone help me to solve this issue?
thanks 
--Tonny

 
Codes is as below:

test tbl =
//Inventory % of sales_Year  
 VAR _curyear = [CurrentYear]
 VAR _filteredtbl = FILTER(ADDCOLUMNS(
                        DISTINCT(
                          SELECTCOLUMNS(dim_Date,
                                 "Year",[Year],
                                 "YearQuarter", [YearQuarter])),
                                 "Data", [Inventory % of sales_Quarter]),
                        [Year]=_curyear - 1)
 
Return
  // AVERAGEX(_filteredtbl,[Data])
  CALCULATE(COUNTROWS(_filteredtbl),_filteredtbl)

tonny_bwg_0-1691744417977.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@tonny_bwg , if you do not have date, Create a date with help from month and year

example

date = date([Year], [Month no], 1)

 

Join it with date of date table and then try a measure like

 

Last YTD Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

 

Last year Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,DATESYTD(ENDOFYEAR(dateadd('Date'[Date],-1,Year)),"12/31"))

 


YTD Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,previousyear('Date'[Date]))

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@tonny_bwg , if you do not have date, Create a date with help from month and year

example

date = date([Year], [Month no], 1)

 

Join it with date of date table and then try a measure like

 

Last YTD Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

 

Last year Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,DATESYTD(ENDOFYEAR(dateadd('Date'[Date],-1,Year)),"12/31"))

 


YTD Sales = CALCULATE(Averagex(Values(Date[Qtr Year]), Calculate(SUM(Sales[Sales Amount]))) ,previousyear('Date'[Date]))

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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