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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
bingbadabom
Helper I
Helper I

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

@bingbadabom , 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))

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @bingbadabom ,

 

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 @bingbadabom ,

 

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

@bingbadabom , 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))

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."

 

_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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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