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
iDataDrew
Advocate IV
Advocate IV

Dynamic date range/line chart...

I've created a dynamic measure of # of days.  When you select the number of days you want, the report compares the current value to the value in the past (the # of days in the past).  I have no problem with this.  However, I'm trying to add a line chart to the report that also updates based on the days selection.  So if someone selected 30 days in the past, then the date range in the line chart should update to only show 30 days (max date - 30 days).  I've seen this done before and I've written the formula the exact same way I saw it, but for some reason the line chart (or table) is not updating properly.  All the dates in the table still show.  Here's how I'm writing the measure (I'm not including the dynamic aspect here for the sake of simplicity):

 

[Trend Value] = CALCULATE( [Total Value], FILTER( Dates, Dates[Date] >= MAX(Dates[Date]) - 30))

 

If you created a table with the Date field in it and then added this Trend Value measure to it, shouldn't the table adjust to only show the last 30 days?  You can see some sample data here.

 

Thank you.

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

Hi @iDataDrew,

 

You can try to use below formula to get last month running total.

LM Total= 
var currentDate=MAX('Table'[Date])
return
CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),[Date]>=DATE(YEAR(currentDate),MONTH(currentDate)-1,DAY(currentDate))&&[Date]<=currentDate))

1.PNG

 

Please ensure your formula not contain any specific date filter which can broke the current filter.(all allexcept)

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @iDataDrew,

 

You can try to use below formula to get last month running total.

LM Total= 
var currentDate=MAX('Table'[Date])
return
CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),[Date]>=DATE(YEAR(currentDate),MONTH(currentDate)-1,DAY(currentDate))&&[Date]<=currentDate))

1.PNG

 

Please ensure your formula not contain any specific date filter which can broke the current filter.(all allexcept)

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.