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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Relative Date Based on Slice Selected

Hi,

My model has two table, one for the calendar and other for data. I have a date slice and a matrix with month/year columns.

I would like to show the last 3 months as column based on slice selected value.

Model

Model.PNG

Report

report.PNG

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I solved my problem with the following measure with some adjustment to deal with year/month. But the idea is to use an agregate function considering all dates from calendar that is inside a range (GENERATESERIES).

 

_TotalProduct = 
CALCULATE(
    SUM(Data[product]); 
    FILTER(
        ALL(Calendar); 
        Calendar[Year] IN GENERATESERIES(SELECTEDVALUE(Calendar[Year])-3; SELECTEDVALUE(Calendar[Year]);1)
    )
)

 

 

 

 

 

 

 

 

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

I solved my problem with the following measure with some adjustment to deal with year/month. But the idea is to use an agregate function considering all dates from calendar that is inside a range (GENERATESERIES).

 

_TotalProduct = 
CALCULATE(
    SUM(Data[product]); 
    FILTER(
        ALL(Calendar); 
        Calendar[Year] IN GENERATESERIES(SELECTEDVALUE(Calendar[Year])-3; SELECTEDVALUE(Calendar[Year]);1)
    )
)

 

 

 

 

 

 

 

 

 

amitchandak
Super User
Super User

Try using relative date filter

Realtive Date filter.png

 

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

@amitchandak Tks for the answer.

Your example use "today" as the start date for the relative dates. But in my case, I use a slice that user can select the base date.

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.