Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Getting total of a SUM based on a specific data range

Hello everyone!

 

I have a question that I couln't figure for myself.

 

I need to set in "DATA_CAPTURA" a specific time like "01/07/2022 to 01/07/2022". but, my "QTD_ATND_2 (it's basically a SUM) "need to be "70".

If I change my range in "DATA_CAPTURA" to 01/07/2022 to 31/07/2022 I will only get what is beetween this two values. But I need everthing that is before "31/07/2022".

 

Capturar.PNG 

Best Regards,

Daniel.

1 ACCEPTED SOLUTION
AntrikshSharma
Community Champion
Community Champion

@Anonymous Try this:

VAR LastSelectedDate = 
	CALCULATE ( 
		MAX ( Dates[Date] ), 
		ALLSELECTED ( Dates[Date] ) 
	)
VAR Result = 
	CALCULATE ( 
		[QTD_ATND_2],
		Dates[Date] > LastSelectedDate
	)
RETURN 
	Result

View solution in original post

1 REPLY 1
AntrikshSharma
Community Champion
Community Champion

@Anonymous Try this:

VAR LastSelectedDate = 
	CALCULATE ( 
		MAX ( Dates[Date] ), 
		ALLSELECTED ( Dates[Date] ) 
	)
VAR Result = 
	CALCULATE ( 
		[QTD_ATND_2],
		Dates[Date] > LastSelectedDate
	)
RETURN 
	Result

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors