Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet 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
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
Solved! Go to Solution.
Thanks for the reply from Greg_Deckler , please allow me to provide another insight:
Hi @C2speville ,
I created some data:
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:
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
Thanks for the reply from Greg_Deckler , please allow me to provide another insight:
Hi @C2speville ,
I created some data:
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:
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
@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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
26 | |
20 | |
19 | |
14 | |
14 |
User | Count |
---|---|
44 | |
36 | |
24 | |
24 | |
22 |