March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Colleagues,
I would like to solve the following issue below. Could You please help me how would You do it in PBI?
there are uniq codes in first column, and for some instances (where in code attached column is not "empty"), there are some attached codes. e.g. if for code B the C and E is attached, it means the same value. I would like to create a uniq column and mark the ones with 1 if it is uniq, and with 0 for ones that are attached to one already marked as uniq. i.e. in this case, B, C and E are attached, so I would like to mark only B as uniq as it was the first occurence, subsequent C and E should be marked as not uniq.
thanks in advance,
prb
Code | Code attached | Uniq |
A | empty | 1 |
B | C, E | 1 |
C | B, E | 0 |
D | empty | 1 |
E | B, C | 0 |
F | empty | 1 |
Solved! Go to Solution.
You may add a custom column in Query Editor.
let s = ", " in Text.Combine(List.Sort(List.Combine({{[Code]}, Text.Split([#"Code attached "], s)})), s)
https://community.powerbi.com/t5/Desktop/IF-AND-dax-Formula/m-p/293991#M129654
You may add a custom column in Query Editor.
let s = ", " in Text.Combine(List.Sort(List.Combine({{[Code]}, Text.Split([#"Code attached "], s)})), s)
https://community.powerbi.com/t5/Desktop/IF-AND-dax-Formula/m-p/293991#M129654
Hi there
working, thanks!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |