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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello
I have data tabel in Power BI
I need to merger (sum) text to have this:
I can do it to number, but I can't to text. Please help
I need this in tabel visualisation on PowerBI desktop
Solved! Go to Solution.
With DAX:
As a calculated Column (my Table is called 'FTable')
VALUE =
CONCATENATEX (
FILTER (
ALL ( FTable ),
FTable[ID] = EARLIER ( FTable[ID] )
&& FTable[Type] = EARLIER ( FTable[Type] )
),
FTable[Orig Value],
", "
)
As a measure:
VALUE1 =
VAR _id =
MAX ( FTable[ID] )
VAR _type =
MAX ( FTable[Type] )
RETURN
CONCATENATEX (
FILTER ( ALL ( FTable ), FTable[ID] = _id && FTable[Type] = _type ),
FTable[Orig Value],
", "
)
I've attached the sample PBIX file
Proud to be a Super User!
Paul on Linkedin.
With DAX:
As a calculated Column (my Table is called 'FTable')
VALUE =
CONCATENATEX (
FILTER (
ALL ( FTable ),
FTable[ID] = EARLIER ( FTable[ID] )
&& FTable[Type] = EARLIER ( FTable[Type] )
),
FTable[Orig Value],
", "
)
As a measure:
VALUE1 =
VAR _id =
MAX ( FTable[ID] )
VAR _type =
MAX ( FTable[Type] )
RETURN
CONCATENATEX (
FILTER ( ALL ( FTable ), FTable[ID] = _id && FTable[Type] = _type ),
FTable[Orig Value],
", "
)
I've attached the sample PBIX file
Proud to be a Super User!
Paul on Linkedin.
Thanks, it's working ! 🙂
Thanks for Your reply.
I try it but not working or I do some wrong.
Can You give more inforation how I can do it?
Hi,
I think this should be easy when you do it in power query.
First pivot and then concat the column should solve this.
Regards
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.