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

Get last 3 months with DAX

Hi all,

I want to filter a table by Table[latest_send_date] where this column only contains dates from the last 3 months. In another table I want to apply the same filter but then these months 1 year ago. Anyone have an idea how to do this in DAX? Don't get it done..

Thanks!

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

Hi @Oos 

 

1. I 'd like to suggest you use the slicer rather than Dax to achieve this:

007.PNG

2. Alternatively, you can use the DAX formula as below:(Create a calendar table and manage the relationship with your fact table)

value in last 3 months this year = CALCULATE(MAX('Table 4'[Value]),FILTER('Table 4',[Date].[MonthNo]>=MONTH(TODAY())-3&&[Date].[Year]=YEAR(TODAY())))

009.PNG

value in last 3 months last year = CALCULATE(MAX('Table 4'[Value]),FILTER('Table 4',[Date].[MonthNo]>=MONTH(TODAY())-3&&[Date].[Year]=YEAR(TODAY())-1))

008.PNG

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

View solution in original post

3 REPLIES 3
v-diye-msft
Community Support
Community Support

Hi @Oos 

 

1. I 'd like to suggest you use the slicer rather than Dax to achieve this:

007.PNG

2. Alternatively, you can use the DAX formula as below:(Create a calendar table and manage the relationship with your fact table)

value in last 3 months this year = CALCULATE(MAX('Table 4'[Value]),FILTER('Table 4',[Date].[MonthNo]>=MONTH(TODAY())-3&&[Date].[Year]=YEAR(TODAY())))

009.PNG

value in last 3 months last year = CALCULATE(MAX('Table 4'[Value]),FILTER('Table 4',[Date].[MonthNo]>=MONTH(TODAY())-3&&[Date].[Year]=YEAR(TODAY())-1))

008.PNG

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

How did you build that slicer with "Last" and designating number of months?  Is that a non-standard slicer?  Thanks

Mariusz
Community Champion
Community Champion

Hi @Oos 

 

The below article describes how to create a calendar table / date dimension, that will allow you to achieve your requirement.

https://community.powerbi.com/t5/Community-Blog/Relative-Date-Dimension/ba-p/779039

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

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.