Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have used the below DAX to concat the columns. But the problem is with the Delimiter where there is no string in the columns it returns the Delimiter. which I don't want to see. Is there any way to get rid of this?
Thanks,
Ranjan
@RanjanThammaiah UNION your columns together and FILTER for non BLANK values and then use CONCATENATEX.
Thanks @Greg_Deckler , The data size is very huge. if I union the columns. does it impact the Numbers?
@RanjanThammaiah I wouldn't think it would excessively impact the creation of the column. Would certainly be faster I would think rather than individually checking if each column is BLANK for example. And sorry, use a table constructor, not UNION, see below.
Column =
CONCATENATEX(
FILTER(
{ [7. Keyword Tag -1], [7. Keyword Tag -2], [7. Keyword Tag -3], [7. Keyword Tag -4], [7. Keyword Tag -5]},
[Value] <> BLANK()
),
[Value],
","
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 62 | |
| 50 | |
| 45 |