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
samue_an
Helper I
Helper I

Help Required to Calc 2 averages, of different time frames from a Matrix in PBI

Hi All, please can you assist me with some help in DAX, Below I have a very basic data set. I need to either add 2 x Cac Cols or Measures of:

1. The average of the last 3 days

2. The average of last day 10 to last day 4 

 

The DAX I'm trying is below: but stumped honestly:

Last 3 days = CALCULATE(AVERAGEX(VALUES(Query1[4G Data Volume_STD(MB)]), DATESINPERIOD(Query1[Time],LASTDATE(Query1[Time]), -3, DAY)))

 

I need the last 2 columns, colour coded of what the averages must be of

 

samue_an_0-1609789766004.png

 

This is my dataset:

 

samue_an_1-1609789815570.png

 

 

1 ACCEPTED SOLUTION

Thanks so much that has solved my problem, buy understanding and using the Date Table, with its time intelligence

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@samue_an , Try with help from date tbale

Rolling 3 day = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],MAX('Date'[Date]),-3,Day))


Rolling 10 till 4 Day = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],MAX('Date'[Date])-4,-6,Day))

Thanks so much that has solved my problem, buy understanding and using the Date Table, with its time intelligence

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.

Top Solution Authors