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

Dax Same Period (user defined) Period Last Months

Hi everyone,

 

I need help to get the average of sales of past 3 months relative to the user defined day of the month (selectedvalue).

 

I am able to find similar solution but this always points to date TODAY(). 

 

For example, today is April 16, 2021:

- I would like to select April 20, 2021 (future date);

- Average of the following dates would be shown:

     March 1 - 20

     Feb 1 - 20

     Jan 1 -20

 

 

This is the similar solution i found and tried to edit by replacing TODAY() with SELECTEDVALUE:

=====

2-MonthSamePeriod Sum =
CALCULATE (
SUM ( 'Sheet 1'[Order Lines/Subtotal w/o Tax] ),
FILTER (
'DATE',
AND (
[Date]
>= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, 1 ),
[Date]
<= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) - 1 )
)
)
)
 
Thanks in advance guys.
Jap

 

1 ACCEPTED SOLUTION
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please use the following measure to get the average of sales of past 3 months:

 

Measure =
AVERAGEX (
    FILTER (
        'Date',
        DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -3, MONTH )
    ),
    SUM ( 'Sheet 1'[Order Lines/Subtotal w/o Tax] )
)

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

3 REPLIES 3
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please use the following measure to get the average of sales of past 3 months:

 

Measure =
AVERAGEX (
    FILTER (
        'Date',
        DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -3, MONTH )
    ),
    SUM ( 'Sheet 1'[Order Lines/Subtotal w/o Tax] )
)

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

HarishKM
Impactful Individual
Impactful Individual

@Anonymous Hey

Try this 

Test 2 = CALCULATE(SUM(Sheet1[Sales]),DATEADD(ALLSELECTED(Sheet1[Date]),-3,MONTH))
amitchandak
Super User
Super User

@Anonymous , Try a measure with help from date Table

 

Rolling 3 =
var _max = day(MAXX(ALLSELECTED('date'),'date'[Date])) //or // day(Today()) //or// Day(today()+4)
return
CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-3,MONTH), filter('Date', Day('Date'[Date]) <=_max))

 

//or are replacement values that you can use for _max

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.