This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I have dataset like below.here i mention for few source name. In my actual dataset its more then 150 row. My client want to see some particular source name for each source category remain name will add like the 2nd Table. How can i make a calculated column for this table.
Thanks in advance.
Solved! Go to Solution.
Hi @mithiladas02 ,
Here are the steps you can follow:
1. Create calculated column.
New Sources =
IF('Table'[Source Category]="Job Boards"&&'Table'[Source] in {"Dice","Boss","Job Street"},
'Table'[Source],
IF('Table'[Source Category]="Social Media"&&'Table'[Source] in {"Instagram","Linkdin"},
'Table'[Source],
IF('Table'[Source Category]="Sources","Sources ALL",
IF(
'Table'[Source Category]="Job Boards","Job board others","Social Media Others"
))))
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 @mithiladas02 ,
Here are the steps you can follow:
1. Create calculated column.
New Sources =
IF('Table'[Source Category]="Job Boards"&&'Table'[Source] in {"Dice","Boss","Job Street"},
'Table'[Source],
IF('Table'[Source Category]="Social Media"&&'Table'[Source] in {"Instagram","Linkdin"},
'Table'[Source],
IF('Table'[Source Category]="Sources","Sources ALL",
IF(
'Table'[Source Category]="Job Boards","Job board others","Social Media Others"
))))
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
Thanks for you quick reply.
In your solution i am not able to make hirarchy . i want to show under job boards 3 source name and other name of jobs borads will go to the "job boards others". same way other category will also show.
@mithiladas02 , If you want change the name you can use if is power query and switch in dax
example
Switch( True() ,
[Source] in {"A", "B", "C"}, [Source],
[Source] ="D", "A',
// Add others
)
if you want to remove filter in power query
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 40 | |
| 21 | |
| 18 |