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 a column as below and i would like to extract the text thats under 'name='
|
[id=1254,state=CLOSED,name=Sprint 5,[id=1342,state=ACTIVE,name=Sprint 6,[id=1234,state=ACTIVE,name=Sprint 7,goal=,
Output should look something like,
Sprint 5, Sprint 6, Sprint 7
Is this achiveable ?
Solved! Go to Solution.
Hi @DBA_BI,
Try this one:
= Text.Combine(List.Transform(List.Skip(Text.Split(Source, "name=")), each Text.BeforeDelimiter(_, ",")), ", ")
Source is your string.
Kind regards,
John
Thanks so much John, worked like Magic !!!!
Hi @DBA_BI,
Try this one:
= Text.Combine(List.Transform(List.Skip(Text.Split(Source, "name=")), each Text.BeforeDelimiter(_, ",")), ", ")
Source is your string.
Kind regards,
John
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.