Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
70 | |
70 | |
34 | |
23 | |
22 |
User | Count |
---|---|
96 | |
94 | |
50 | |
42 | |
40 |