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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Alex03260
Regular Visitor

Extract Text Based on Length of String

I have text in a column "Outline_Number" I want to extract some of the text based on the length of the string to a new column "Outline_Parent"

 

i.e. I want the whole string minus the last 2 characters, this would be easy in excel but i'm relatively new to BI.

 

"Outline_Number" = 1.1.2.2.4

 

Result

 

"Outline_Parent" = 1.1.2.2

 

Thanks 

 

Alex

 

3 REPLIES 3
AlienSx
Super User
Super User

Text.Combine(List.RemoveLastN(Text.ToList(txt), 2))

Vijay_A_Verma
Super User
Super User

You may use this

Text.Start([Outline_Number],Text.Length([Outline_Number])-2)

If you have string less than 2 in length

then

try Text.Start([Outline_Number],Text.Length([Outline_Number])-2) otherwise null

The first version worked but as expected gives an error on short string, the 2nd version gives a syntax error on the "otherwise null"

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.