March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have two tables
Date table: Date
Product Table: product ID, Timestamp
The tables have an 1:M relation with cross filtering set to "both"
I have a slicer in a tab and I want to get the date difference between those two tabs. But I am getting wrong values because of my cross filtering criteria. I have tried DAX but I am unable to get the correct answer here.
If I try Dax to get Max date and Min date, it shows max date as 2020 and Min date as 2000. It does not give me the max and min dates of that slicer, Any help would be greatly appreciated here.
Days Measured=CALCULATE(COUNTROWS(CalendarDate),ALLSELECTED()) testmaxdate = CALCULATE(MAX(CalendarDate[CalendarDate].[Date]),ALLSELECTED(CalendarDate))
Solved! Go to Solution.
Hi @mady90 ,
You can create measures to get Max date and Min date of date slicer, as well the date difference , like DAX below:
Max date = CALCULATE(MIN(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date])) Min date = CALCULATE(MAX(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date])) DateDiff= DATEDIFF([Min date], [Max date], DAY)
If I misunderstood it, could you please share your sample data and desired output screenshots for further analysis? You can also upload sample pbix to OneDrive and post the link here. Do mask sensitive data before uploading.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mady90 ,
You can create measures to get Max date and Min date of date slicer, as well the date difference , like DAX below:
Max date = CALCULATE(MIN(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date])) Min date = CALCULATE(MAX(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date])) DateDiff= DATEDIFF([Min date], [Max date], DAY)
If I misunderstood it, could you please share your sample data and desired output screenshots for further analysis? You can also upload sample pbix to OneDrive and post the link here. Do mask sensitive data before uploading.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |