The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |