Forum Discussion
Anonymous
6 years agoNot applicable
Sum between two dates
Hi, In one of my reports I use TOTALMTD to give the monthly values of that month. However I need a daxformula that summarize a value between two dates (will be a static number throughout the repo...
- 6 years ago
Hi @Oscar1133 ,
Here are 2 measures that can satisfy your need:
Test bus salesmen=CALCULATE(SUM(ddd[RT Bus Salesmen]),DATESBETWEEN('Calendar table'[Date],DATE(2019,02,01),DATE(2019,02,28)))O
Test bus salesmen=CALCULATE(SUM(ddd[RT Bus Salesmen]),FILTER(ALLSELECTED('Calendar table'),'Calendar table'[Date]>=DATE(2019,02,01) && 'Calendar table'[Date]<=DATE(2019,02,28)))Saludos
KellyDid I answer your question? Mark my position as a solution!
v-kelly-msft
6 years agoCommunity Support
Hi @Oscar1133 ,
Here are 2 measures that can satisfy your need:
Test bus salesmen=CALCULATE(SUM(ddd[RT Bus Salesmen]),DATESBETWEEN('Calendar table'[Date],DATE(2019,02,01),DATE(2019,02,28)))
O
Test bus salesmen=CALCULATE(SUM(ddd[RT Bus Salesmen]),FILTER(ALLSELECTED('Calendar table'),'Calendar table'[Date]>=DATE(2019,02,01) && 'Calendar table'[Date]<=DATE(2019,02,28)))
Saludos
Kelly
Kelly
Did I answer your question? Mark my position as a solution!
Syndicate_Admin
5 years agoAdministrator
Hi, I'm starting with Powr BI and I'm getting to know the DAX features.
I'd like to know if there's a way to do the following with DAX.
I have a table with the following data:
| Team | Origin | Destination | Departure Date | Arrival Date | Distance kms | Total Distance |
| T1 | Planta1 | Almacen1 | 01/03/2021 02:01 | 01/03/2021 10:01 | 150 | 292 |
| T1 | Almacen1 | Planta1 | 01/03/2021 11:10 | 01/03/2021 19:01 | 142 | |
| T1 | Planta1 | Almacen2 | 02/03/2021 03:01 | 02/03/2021 12:01 | 210 | 420 |
| T1 | Almacen2 | Planta1 | 02/03/2021 13:10 | 02/03/2021 22:01 | 210 | |
| T1 | Planta1 | Bodega1 | 03/03/2021 02:01 | 03/03/2021 02:31 | 7 | 299 |
| T1 | Bodega1 | Almacen1 | 03/03/2021 03:01 | 03/03/2021 10:01 | 150 | |
| T1 | Almacen1 | Planta1 | 03/03/2021 11:10 | 03/03/2021 19:01 | 142 |
Each row represents a section of the route and its distance, I need to be able to add the distance of the different sections and put it in a total, this in excel I do with formulas, but with DAX I can not find the way.
Thank you for your attention, greetings...
- v-kelly-msft5 years agoCommunity Support
Hi Syndicate_Admin ,
Better create a new thread,then we will help to follow it.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!