Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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.
Solved! Go to Solution.
@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))
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.
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:
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.
@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]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |