Hi,
I'm new to Power Bi desktop, so sorry if this is a stupid question.
I'm working on a project where i have a list of of calls made by various users, each call spends a little bit of data (DUR CHAM (Gb)). I already have a way to see the biggest ammount of data spent by a user, but now i would like to obtain the name of said user not the amount.
I will send attached some images that might help understand my problem.
English is not my first language, sorry for any grammatical errors.
Thanks for the help.
1) the biggest image is the model of my project.
2)the measure Top Spender (Gb) is what I used to calculate the most amount of data spent by one user
3) the Top spender Name is my attempt at getting the name of the user who spent the most data
4)thge last image is an helper function to calculate the amount of data each user spended.
Model
measure used to calculate the most data spent by a single user
my attempt at getting the name of the user
measure to calculate how much data each user spent
Solved! Go to Solution.
Hi @Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create measure.
DUR CHAN =
SUMX(FILTER(ALL('Table'),
'Table'[User]=MAX('Table'[User])),[Amount])
Top spender(GD) =
MAXX(ALL('Table'),[DUR CHAN])
Top Spender =
MAXX(FILTER(ALL('Table'),
[DUR CHAN]=[Top spender(GD)]),[User])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create measure.
DUR CHAN =
SUMX(FILTER(ALL('Table'),
'Table'[User]=MAX('Table'[User])),[Amount])
Top spender(GD) =
MAXX(ALL('Table'),[DUR CHAN])
Top Spender =
MAXX(FILTER(ALL('Table'),
[DUR CHAN]=[Top spender(GD)]),[User])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
214 | |
50 | |
47 | |
45 | |
42 |
User | Count |
---|---|
261 | |
211 | |
103 | |
79 | |
64 |