Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
hi everyone, i need your help with this dynamic filter that i cant seem to find a solution for...
how do i get the difference of the quantity between the 2 period that i selected from the filter? the quantity is the one in millions btw. thanks in advance! would really appreciate it
You are probably looking for a slightly different version:
Measure =
VAR MaxDate = MAX(ALLSELECTED ('Date'[Date]))
Var MinDate = MIN(ALLSELECTED ('Date'[Date]))
Return
CALCULATE( [your original measure], filter (all(date), date > mindate && date < maxdate))
Proud to be a Super User!
Awesome Keyboard Shortcusts in Power BI, thumbs up if you like the article
My Community Blog Articles (check them out!)
My Blog - Power M code to automatically detect column types -
How to create test data using DAX!
Hi,
Try this measure!
Measure =
VAR MaxDate = MAX('Date'[Date])
Var MinDate = MIN('Date'[Date])
Return
CALCULATE(
DATEDIFF(MinDate,MaxDate,DAY),
Products
)
Actually, I think Allselected() would probably be a better filter than the table name.
Hope that helps you!
~Kim