Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
aishak12
Helper IV
Helper IV

Transform column (removing characters)

All,

 

I have column1 where I want to create a new column while removing some characters.

 

 

So Column1: 123456789

 

I want to create a new column2: 1234

 

 

Any suggestions?

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @aishak12 ;

You could create a column by dax.

 

Column2 = LEFT([Column1],4)

 

The final show:

AilsaTao_0-1661233939843.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @aishak12 ;

You could create a column by dax.

 

Column2 = LEFT([Column1],4)

 

The final show:

AilsaTao_0-1661233939843.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@aishak12 , You can use Text.Start in power query

 

If the column is Text

Text.Start([Column],4)

 

it that is number type column

Number.FromText(Text.Start(Number.ToText([Column]),4))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors