Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
How do I calculate the duration between the from and to dates of a date slicer which needs to be used in another DAX measure?
Kindly find the image below for reference.
Regards,
Kavya
Solved! Go to Solution.
Considering the slicer is created on Date[Date]
Date Harvest Min = CALCULATE( MIN( Dates[Date] ), ALLSELECTED( Dates[Date] ) )
Date Harvest Max = CALCULATE( MAX( Dates[Date] ), ALLSELECTED( Dates[Date] ) )
Date Difference = DATEDIFF( [Date Harvest Min], [Date Harvest Max], DAY )
Hi @Anonymous ,
Similar to the formula given by @arvindsingh802 , refer to the following test results.
M_ =
var min_date = MIN('Table'[Date])
var max_date = MAX('Table'[Date])
return DATEDIFF(min_date,max_date,DAY)
If the problem is still not resolved, please point it out. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Similar to the formula given by @arvindsingh802 , refer to the following test results.
M_ =
var min_date = MIN('Table'[Date])
var max_date = MAX('Table'[Date])
return DATEDIFF(min_date,max_date,DAY)
If the problem is still not resolved, please point it out. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thankyou @v-henryk-mstf
It is working as expected but we need to add +1 in the DAX code in order to consider start and end date into consideration.
Considering the slicer is created on Date[Date]
Date Harvest Min = CALCULATE( MIN( Dates[Date] ), ALLSELECTED( Dates[Date] ) )
Date Harvest Max = CALCULATE( MAX( Dates[Date] ), ALLSELECTED( Dates[Date] ) )
Date Difference = DATEDIFF( [Date Harvest Min], [Date Harvest Max], DAY )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
49 | |
33 | |
32 | |
27 | |
24 |
User | Count |
---|---|
40 | |
33 | |
19 | |
18 | |
16 |