The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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]))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
80 | |
78 | |
43 | |
37 |
User | Count |
---|---|
157 | |
112 | |
64 | |
60 | |
54 |