Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Team,
Could you look into the need.
I'm looking for a DAX for a new concated column calculating from column "ID" and column "Name", and concatenated based on expected string of "BC" from column "Type". And the rest of the rows should be null. Please observe two tables for clear understanding...
Actual Data Table:
Type | ID | Name |
AB | 123 | Compensation |
BC | 345 | Variable Pay |
CD | 127 | SPHR |
BC | 379 | Learning |
AB | 456 | Onboarding |
BC | 497 | Performance |
CD | 230 | Goals |
DC | 107 | Succession |
Expected Data Table:
Type | ID | Name | Expected Concated Column |
AB | 123 | Compensation | |
BC | 345 | Variable Pay | 345Variable Pay |
CD | 127 | SPHR | |
BC | 379 | Learning | 379Learning |
AB | 456 | Onboarding | |
BC | 497 | Performance | 497Performance |
CD | 230 | Goals | |
DC | 107 | Succession |
Thank you for your time and patience.
RK
Solved! Go to Solution.
ConcatCol = IF ( Type = "BC", CONCATENATE(ID, Name), "" )
Hope this helps,
David
IF ( OR(Type = "BC", Type = "AB") CONCATENATE(ID, Name), "" )
ConcatCol = IF ( Type = "BC", CONCATENATE(ID, Name), "" )
Hope this helps,
David
Hello @dedelman_clng,
It's worked to my requirement.
And just perhaps if I woul'd like to go with "BC" + "AB" (Just in case!)
Thanks in Advance...
RK
IF ( OR(Type = "BC", Type = "AB") CONCATENATE(ID, Name), "" )
User | Count |
---|---|
60 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
40 | |
39 |