Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi
I can create a table which shows Dept and Salary, then I can show the max Salary for each dept. After I found the max salary for each dept, can I show the name of person? In excel pivot table if I click on the salary it will open a new sheet and show the record of that person so I would know the name. Can I do that without wrting DAX. Thank you
Thanks you very much.
Solved! Go to Solution.
Hi, @lastnn30
It may be that you still need to use DAX in order to accomplish your needs.
Measure:
Max Salary Name =
IF (
SELECTEDVALUE ( tdEmployee[Salary] )
= CALCULATE (
MAX ( tdEmployee[Salary] ),
FILTER (
ALL ( tdEmployee ),
[Department] = SELECTEDVALUE ( tdEmployee[Department] )
)
),
SELECTEDVALUE ( tdEmployee[Name] )
)
When you click on the highest Salary in each department, the name of the person is displayed.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @lastnn30
It may be that you still need to use DAX in order to accomplish your needs.
Measure:
Max Salary Name =
IF (
SELECTEDVALUE ( tdEmployee[Salary] )
= CALCULATE (
MAX ( tdEmployee[Salary] ),
FILTER (
ALL ( tdEmployee ),
[Department] = SELECTEDVALUE ( tdEmployee[Department] )
)
),
SELECTEDVALUE ( tdEmployee[Name] )
)
When you click on the highest Salary in each department, the name of the person is displayed.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Write these measure
Salary paid = sum(tdEmployee[Salary])Highest salary paid to = FIRSTNONBLANK(TOPN(1,VALUES(tdEmployee[Name]),[Salary paid]),1)
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 47 | |
| 45 | |
| 33 | |
| 33 | |
| 30 |
| User | Count |
|---|---|
| 138 | |
| 118 | |
| 59 | |
| 58 | |
| 56 |