Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I am trying to concatenate 3 columns into 1 based on some filters with DAX measure but not getting much success.
Criteria:
Expected outcome:
Many thanks
Solved! Go to Solution.
@H_insight Maybe:
Summary Measure =
VAR __Table = FILTER('Table',[Updated Type] <> BLANK())
RETURN
CONCATENATEX(__Table, [Id 2] & ", " & [Update Summary] & ", " & [Updated Type], UNICHAR(10))
Put this in a Card visual.
Hi
Please find a solution in new column
Thanks @Anonymous for looking into my query. Despite the calculated column showing the concatenated columns, it was not dynamic enough to deliver my table view. Thanks again.
@H_insight Maybe:
Summary Measure =
VAR __Table = FILTER('Table',[Updated Type] <> BLANK())
RETURN
CONCATENATEX(__Table, [Id 2] & ", " & [Update Summary] & ", " & [Updated Type], UNICHAR(10))
Put this in a Card visual.
Thanks @Greg_Deckler fro your help. I have used your measure with a minor tweak to fit my needs in a table:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |