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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Sum the sum of values for first and last date

I have a table that looks like this. The values presented here are filtered with a slicer.

I would like to sum the values for the first date (feb 19th) and the last date (feb 22nd). I've tried adapting solutions i've found for almost similar problems but with no luck.

 

bingbadabom_0-1614260696175.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try a measure like

 


measure =
var _max = maxx(allselected(Table), Table[Date])
var _min = maxx(allselected(Table), Table[Date])
return
calculate(sum(Table[value]), filter(Table, Table[Date] =_min || Table[Date] =_max))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @Anonymous ,

 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.

 

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @Anonymous ,

 

Based on your description, you can create some measures as follows.

_sum = 

var selected_max=MAXX(ALLSELECTED('Table'),[date])

var selected_min=MINX(ALLSELECTED('Table'),[date])

return

SUMX(FILTER(ALL('Table'),[date] in {selected_min,selected_max}),[value])
_subtract = 

var selected_max=MAXX(ALLSELECTED('Table'),[date])

var selected_min=MINX(ALLSELECTED('Table'),[date])

var x1=SUMX(FILTER(ALL('Table'),[date]=selected_min),[value])

var x2=SUMX(FILTER(ALL('Table'),[date]=selected_max),[value])

return

x1-x2

Result:

v-yuaj-msft_0-1614568725526.png

 

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Anonymous , Try a measure like

 


measure =
var _max = maxx(allselected(Table), Table[Date])
var _min = maxx(allselected(Table), Table[Date])
return
calculate(sum(Table[value]), filter(Table, Table[Date] =_min || Table[Date] =_max))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

This helped me a lot by the way. Thank you.
But if i need to sum each date by itself and subtract the two numbers?

calculate(
    sum('Table'[Value]), filter('Table', 'Table'[Date] =_min) 
    -
    sum('Table'[Value]), filter('Table', 'Table'[Date] =_max)
)

I get the following error message "A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed."

 

Anonymous
Not applicable

_max and _min returns the same date. I tried replacing MAXX with MINX but then the date went too far back, it seems that it does not take the slicer values into account

Edit:
This took care of my date problems

var _max = CALCULATE(LASTDATE('Table[Date]), ALLSELECTED('Table[Date]))
var _min = CALCULATE(FIRSTDATE('Table[Date]), ALLSELECTED('Table[Date]))
 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors