Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
I'm trying to insert a few "dots" symbol to a column with a custom column, but i can only get one characte, this worksr:
CustomColumn
=Text.Insert(Text.From([Column]),2,".")
What if I want to add another dot after the fourth and sixth characters? I've tried a few things withous success, i don't know what's the right syntax, something like this maybe but i can't get it to work:
CustomColumn
=Text.Insert(Text.From([Column]),2,".",4,".",6,".")
CustomColumn
=Text.Insert(Text.From([Column]),2,4,6,".")
Solved! Go to Solution.
Hi @mcflurry
Add a custom column like :
Column=Text.Insert(Text.Insert([Column1],4,"."),7,".")
And the effect is as shown:
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mcflurry
Add a custom column like :
Column=Text.Insert(Text.Insert([Column1],4,"."),7,".")
And the effect is as shown:
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi !
You should use the following Power Query (M) code to do your transformation for Custom column;
Text.Insert(Text.Insert(Text.Insert([Column1],2,"."),5,"."),8,".")
Replace Character
First replacement will be done on 2nd position, now your string has one more character in it, so to replace 4th character in orginal string you need to replace 5th position and similary for 6th caharacter in orignal string you need to replace 8th position
Regards,
Hasham
@mcflurry - Like this?
Text.Insert(
Text.Insert(
Text.Insert(
[Column1],
2,
"."
),
4,
"."
),
6,
"."
)
Proud to be a Super User!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 20 | |
| 14 | |
| 13 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 40 | |
| 38 | |
| 38 | |
| 38 |