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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, All I'm after help on this,
I'm working on a list of suppliers of about 50 and I want to keep just 5 of the suppliers for a new column and make everyone else 'Others'
Please can I have a DAX formula that will output this?
Many thanks.
Solved! Go to Solution.
Hi @Anonymous
Please try
New Supplier Name =
IF (
Sppliers[Supplier Name] IN { "Name1", "Name2", "Name3", "Name4", "Name5" },
Sppliers[Supplier Name],
"Others"
)
Hi @Anonymous
Please try
New Supplier Name =
IF (
Sppliers[Supplier Name] IN { "Name1", "Name2", "Name3", "Name4", "Name5" },
Sppliers[Supplier Name],
"Others"
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
15 | |
7 | |
6 |