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.
Hi folks
I have a table called "Employee History", it has a column named "Salary".
Appreciate any help offered, much thanks!
I want to create a calculated column called "Salary Sort col" :
Idk what I'm doing wrong but my calculated column shows nothing 😅
File link : https://drive.google.com/file/d/1fX_QSxj3OVJhG3jGk9hLuZXz5sUFESPF/view?usp=sharing
Solved! Go to Solution.
Hi @holywasabi ,
I would suggest you to create a calculated column as below to achieve the requirement.
Salary Range = If(Salary >0 && Salary < 39999,"Below $40k",if(Salary >39999 && Salary < 59999,"$40 - $59k", and so on)
let me know if this helps.
Thanks,
Ankur
Salary Range col =
CALCULATE (
VALUES ( 'Salary sort'[Salary Range] ),
FILTER (
'Salary sort',
'Employee History'[salary] >= 'Salary sort'[Min]
&& 'Employee History'[salary] <= 'Salary sort'[Max]
)
)
@Ankur04 & @SachinNandanwar Thanks a lot guys!
I used both of your suggestions and they both work 🙂
Salary Range col =
CALCULATE (
VALUES ( 'Salary sort'[Salary Range] ),
FILTER (
'Salary sort',
'Employee History'[salary] >= 'Salary sort'[Min]
&& 'Employee History'[salary] <= 'Salary sort'[Max]
)
)
Hi @holywasabi ,
I would suggest you to create a calculated column as below to achieve the requirement.
Salary Range = If(Salary >0 && Salary < 39999,"Below $40k",if(Salary >39999 && Salary < 59999,"$40 - $59k", and so on)
let me know if this helps.
Thanks,
Ankur
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 |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |