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,
I have below column "Tags"
What i want to do in power query editor is to add a "{" at the beginning and a "}" at the end of the values in the original column., so i dont want to have to create a new column.
So i get it like this:
How can i do this?
Hi @TechR21 ,
If you don't want to use the custom column feature, you can use the following formula:
List.Transform(#"StepName"[ColumnName], each "{" & _&"}")
, where [ColumnName] is the name of the column you want to add a prefix. This returns a new list with each element the result of adding "{" and "}"before the element in the original column.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This works but then i only keep one column as a result. My table has multiple columns.
I see now i didnt mention it above
is it possible to add these to the original column without creating a new one?
Hi @TechR21
I don't really know but if you create a new column, you can remove the first, once you have the new one
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!