Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I've been researching this all day and have had no luck.
I am dealing with employee expenses and I am connected via Direct Query. I need to identify every employee with total expenses over $800 which means my measure needs to be able to filtered to > $800. Everything I have tried only gives me individual transactions over $800, but I need the total by person that is over $800.
Thoughts?
Data Table:
Emp ID | Date | Amount |
1 | 1/2/2023 | $ 500.00 |
2 | 2/4/2023 | $ 875.00 |
3 | 2/5/2023 | $ 810.00 |
3 | 3/1/2023 | $ 100.00 |
4 | 1/17/2023 | $ 715.00 |
5 | 1/20/2023 | $ 972.00 |
6 | 2/7/2023 | $ 300.00 |
6 | 2/8/2023 | $ 550.00 |
Desired Result:
Apply filter (to visual or not): Amt per person > $800.00
Emp ID | Amount |
2 | $875 |
3 | $910 |
5 | $972 |
6 | $850 |
Solved! Go to Solution.
Thank you it makes it now more easier than 1000 words. 🙂
Please try this. The filter calculated it in the group of the Employee No.:
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
Return _t
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
RETURN IF(_t>800,1,0)
Proud to be a Super User!
My fault by copying:
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
RETURN IF(_t>800,1,0)
Proud to be a Super User!
Total Exp:
Total Exp =
var emp = VALUES(Expenses[Emp No])
return
SUMX(
SUMMARIZE(
FILTER(ALLSELECTED(Expenses),Expenses[Emp No] in emp),
Expenses[Emp No],
"Total",SUM(Expenses[Amount])
),
[Total]
)
Result:
You can put it on visual level to work on aggregated items.
Or add more columns to see details.
Proud to be a Super User!
Total Exp:
Total Exp =
var emp = VALUES(Expenses[Emp No])
return
SUMX(
SUMMARIZE(
FILTER(ALLSELECTED(Expenses),Expenses[Emp No] in emp),
Expenses[Emp No],
"Total",SUM(Expenses[Amount])
),
[Total]
)
Result:
You can put it on visual level to work on aggregated items.
Or add more columns to see details.
Proud to be a Super User!
Thank you! This also worked for me (for all the future people searching for answers!)
Make a example (sample data) how this related tables are in connection with the main table (amount) and i can check it to find a general and flexible solution.
Proud to be a Super User!
Sample data: https://drive.google.com/file/d/1vyqpCH07sEYeOhGRnHdy9qA5RaIDvGtv/view?usp=share_link
(Now I cannot get your measure to work at all - 😩 )
Thank you it makes it now more easier than 1000 words. 🙂
Please try this. The filter calculated it in the group of the Employee No.:
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
Return _t
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
RETURN IF(_t>800,1,0)
Proud to be a Super User!
Trying it all now. The first one works beautifully (like, literally excited about it!!!). The second, I'm getting "The syntax for 'IF' is in correct."
I cannot thank you enough!!
My fault by copying:
Filter =
VAR _t = CALCULATE(sum(Expenses[Amount]),ALLEXCEPT(Expenses,Expenses[Emp No]))
RETURN IF(_t>800,1,0)
Proud to be a Super User!
Any idea why the measure above would stop working? When I try to add as a filter now, my table visual errors out.
Thank you‼️‼️‼️
Please set @Padycosmos post also as a solution, I see he mentioned it some days before 🙂
Proud to be a Super User!
Hope this helps:
Thank you for your reply! This gave me the same total on every line. ☹️
Using a matrix, if I only have Emp ID and Name in the Rows and (Sum of)"Amount" in the values, then the measure works like a charm. But, if I add date or any other details, it limits the "Transaction Amount" to $800+. I have one person that has 28 expenses that make up a total of $2,225.03, but if I try to get to the detail, I can't.
Do you need a table like that or need a visual showing filtered employees?
Regardless, you can do the followings.
1. Filter in a visual
2. Filtered employees table
Filtered Emplpoyees =
FILTER(
SUMMARIZE(
'Table',
'Table'[Emp ID]
),
[Employee Total Expenses] >= 800
)
Thank you for your response. When I add the Total to a visual filter, it just gives me the individual submisions made for $800+, not the total.
I tried the table but clearly do not have it set up correctly - would this measure be added as a filter or a column in a Matrix? Sorry - trying to determine how to use.
1. Build the measure in my screenshot I attached previously
2. Bring in EmpID into a table/matrix visual
3. Bring in the measure into the visual
4. The filter on that measure has been added to the visual
5. Filter greater than 800 in the filter
Does this help...?
I am trying to get this to work. Direct Query with a TON of data - trying to filter it down so it will refresh in a timely manner at least for testing purposes.
Make the post as a solution if it was helpfull.
Proud to be a Super User!
Thiis works, until I try to add a filter to remove the blanks (ie. employees whose expenses are not >$800). I will keep playing with it though. Thank you for your reply!
let us know if you need more help. mark a or two post as solution. 🙂
Proud to be a Super User!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
95 | |
86 | |
78 | |
66 |
User | Count |
---|---|
157 | |
125 | |
116 | |
111 | |
95 |