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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Pbix_is
Advocate I
Advocate I

How do I determine if value in text type column contains only numbers

Hello!

I have a column type text where some values are only numbers and start with many zeros 00000000000123.

Other values are text only or are combination of text, characters and numbers; sample:

Pbix_is_1-1660671990951.png

 

Goal is to trim first zeros, but ONLY from values that contain only numbers (so e.g. 00E2 should keep zeros after transformation, but above 00000000123 should be 123). 

I wast trying to duplicate column and change type of column to decimal number  -  then keep values from this column if there is no error, and from the original column if I get errors in the second column.

BUT some lines that contain text get transfered to number (these become zero):

Pbix_is_0-1660671539240.png

Do you have a better idea to solve this or you know why these become zero? 

Thank you in advance!

1 ACCEPTED SOLUTION
latimeria
Solution Specialist
Solution Specialist

Hi @Pbix_is ,

Try this:

Table.AddColumn(Source, "Custom", each try Number.ToText(Number.From(Text.TrimStart([Column1],"0"))) otherwise  [Column1], type text)

View solution in original post

3 REPLIES 3
latimeria
Solution Specialist
Solution Specialist

Hi @Pbix_is ,

Try this:

Table.AddColumn(Source, "Custom", each try Number.ToText(Number.From(Text.TrimStart([Column1],"0"))) otherwise  [Column1], type text)

Thank you!! It does solve all that I described above!

These came up, however, so I think I will add condition if text contains "E" or "." keep first column. 

Pbix_is_0-1660728767044.png

 

Pbix_is
Advocate I
Advocate I

Oh, forgot to mention: in Power Query Editor 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors