Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have below table as input
id|type
1|manager
1|non manager
1|manager
1|non manager
1|non manager
1|manager
desired output: if more than one id falling into manager and non manager hen it should show as mixed as shown below.
id|type
1|mixed
Can anyone help ..
Solved! Go to Solution.
Hi @Anonymous,
do you need SQL or DAX?
If SQL, you can use following query:
SELECT
id,
CASE WHEN COUNT(DISTINCT type) > 1 THEN 'mixed' ELSE MIN(type) END "Type"
FROM YourTable
GROUP BY ID
Hi @Anonymous,
do you need SQL or DAX?
If SQL, you can use following query:
SELECT
id,
CASE WHEN COUNT(DISTINCT type) > 1 THEN 'mixed' ELSE MIN(type) END "Type"
FROM YourTable
GROUP BY ID
You should try using a case when switch in sql counting the number of unique type if it is highter than one then mixed
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 47 | |
| 36 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 56 | |
| 38 | |
| 21 | |
| 21 |