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
arveseba
Frequent Visitor

Average value for last 7 day in other table

issue.PNGHi,

 

I need count in column Table2[Last7d] average Table[TotalProduct] value of the last 7 days ofr each employee.

I was looking solution on similar topics, but i didn't find it.

How does it look in DAX?

I tried: Last7d = CALCULATE(

AVERAGE(

Table1[TotalProduct]),

DATESINPERIOD(Table1[Date],

LASTDATE(Table1[Date]),-7,DAY))

 

but i have only results 1 and 0.

Where did I make mistake ?

1 ACCEPTED SOLUTION
Eric_Zhang
Employee
Employee


@arveseba wrote:

issue.PNGHi,

 

I need count in column Table2[Last7d] average Table[TotalProduct] value of the last 7 days ofr each employee.

I was looking solution on similar topics, but i didn't find it.

How does it look in DAX?

I tried: Last7d = CALCULATE(

AVERAGE(

Table1[TotalProduct]),

DATESINPERIOD(Table1[Date],

LASTDATE(Table1[Date]),-7,DAY))

 

but i have only results 1 and 0.

Where did I make mistake ?


@arveseba

For those functions DATEINPERIOD, LASTDATE, PREVIOUSMONTH etc, please use a consecutive calendar table. Then change the measure a little bit. The attached demo is for your reference.

Last7d =
CALCULATE (
    AVERAGE ( Table1[TotalProduct] ),
    DATESINPERIOD ( DateTable[Date], LASTDATE ( DateTable[Date] ), -7, DAY )
)

Capture.PNG

View solution in original post

1 REPLY 1
Eric_Zhang
Employee
Employee


@arveseba wrote:

issue.PNGHi,

 

I need count in column Table2[Last7d] average Table[TotalProduct] value of the last 7 days ofr each employee.

I was looking solution on similar topics, but i didn't find it.

How does it look in DAX?

I tried: Last7d = CALCULATE(

AVERAGE(

Table1[TotalProduct]),

DATESINPERIOD(Table1[Date],

LASTDATE(Table1[Date]),-7,DAY))

 

but i have only results 1 and 0.

Where did I make mistake ?


@arveseba

For those functions DATEINPERIOD, LASTDATE, PREVIOUSMONTH etc, please use a consecutive calendar table. Then change the measure a little bit. The attached demo is for your reference.

Last7d =
CALCULATE (
    AVERAGE ( Table1[TotalProduct] ),
    DATESINPERIOD ( DateTable[Date], LASTDATE ( DateTable[Date] ), -7, DAY )
)

Capture.PNG

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.