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
C2speville
New Member

DAX to understand period between start and end date

Hi, 
I need your professional help. 

I have built up a savings table for my team which looks like attached. 

I have been trying to build up a Dashboard on PowerBi (attached). 

 

What I want is to have a DAX which enables to calculate the savings of a period, by taking into consideration the start and end date on my table. 

On all models I have done, it always consider the full period savings, and not the period within.

For example, If i select a period on Power BI from Jan 2024 to Jun 2024, it should show a total of 720,000 (line 1) + 330,000 (line 2)
The problem is that it doesn't understand these periods between start and end. 

I know it is possible to do it (because someone already did it for me 2 years ago), but I just can't find a way to do it myself. 

Your help will be much appreciated 🙂 

Thanks Procurement Dashboard.pngSavings Table.png

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

Thanks for the reply from Greg_Deckler , please allow me to provide another insight: 
Hi  @C2speville ,

I created some data:

vyangliumsft_0-1730710783812.png

Here are the steps you can follow:

1. Create measure.

Measure =
var _mindate=MINX(ALLSELECTED('Table 2'),'Table 2'[Date])
var _maxdate=MAXX(ALLSELECTED('Table 2'),'Table 2'[Date])
return
SUMX(
    FILTER('Table',
    'Table'[Date]>=_mindate&&'Table'[Date]<=_maxdate),[Amount])

2. Result:

vyangliumsft_1-1730710783818.png

If dax gets results that don't match your expected results, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Best Regards,

Liu Yang

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

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Thanks for the reply from Greg_Deckler , please allow me to provide another insight: 
Hi  @C2speville ,

I created some data:

vyangliumsft_0-1730710783812.png

Here are the steps you can follow:

1. Create measure.

Measure =
var _mindate=MINX(ALLSELECTED('Table 2'),'Table 2'[Date])
var _maxdate=MAXX(ALLSELECTED('Table 2'),'Table 2'[Date])
return
SUMX(
    FILTER('Table',
    'Table'[Date]>=_mindate&&'Table'[Date]<=_maxdate),[Amount])

2. Result:

vyangliumsft_1-1730710783818.png

If dax gets results that don't match your expected results, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Best Regards,

Liu Yang

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

Greg_Deckler
Super User
Super User

@C2speville Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

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.

Top Solution Authors