Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Jolly Day,
This seems like a very simple thing to get but I am new to Power BI and can't quite get it. I have a measure that returns the lowest counts based off of Entry type. I need to also add the names of the lowest to my Matrix.
Here is the measure already created to grab the value. I need the Full Name based off of that value from the System_Users table
Solved! Go to Solution.
Hi @Anonymous ,
I created some data:
Table1:
Table2:
Here are the steps you can follow:
1. Create measure.
Name1 =
MAXX(
FILTER(ALL(Table1),
[Job Entry]=[Least COUNT]),[Full Name])
Name2 =
MAXX(
FILTER(ALL(Table1),
[Job Audit]=[Least COUNT]),[Full Name])
Name =
SWITCH(
TRUE(),
MAX('Table2'[Entry Type])="Job Audit",[Name2],
MAX('Table2'[Entry Type])="Job Entry",[Name1])
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:
Table1:
Table2:
Here are the steps you can follow:
1. Create measure.
Name1 =
MAXX(
FILTER(ALL(Table1),
[Job Entry]=[Least COUNT]),[Full Name])
Name2 =
MAXX(
FILTER(ALL(Table1),
[Job Audit]=[Least COUNT]),[Full Name])
Name =
SWITCH(
TRUE(),
MAX('Table2'[Entry Type])="Job Audit",[Name2],
MAX('Table2'[Entry Type])="Job Entry",[Name1])
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |