Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
 
					
				
		
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
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |