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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
JNelson
Helper II
Helper II

Remove text from column but leave numbers

Hi community!

 

I have a data set where I have a column [Litres] which should be a numerical value, however the people inputting the data sometimes put text. I know I could use a data validation on the original data input sheet, but there are too many to police (and they just copy and paste over the data validation anyway!).

 

My question is, can I, in the existing [Litres] column replace any text with null and leave the correct values as is (ie numercial values).

OR in a new custom column, can I do an if function that if[Litres] is text then null else [Litres] but I just don't know the correct code for that.

 

Thanks in advance!

1 ACCEPTED SOLUTION
edhans
Super User
Super User

Easiest thing is a new column as you suggest, but use try/otherwise and not if/then/else.

 

The formula is:

try Number.From([Column1]) otherwise null)

edhans_0-1704844878406.png

 

If the conversion to number returns an error, try/otherwise will return null. You can change that to 0 or whatever in the formula.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

4 REPLIES 4
edhans
Super User
Super User

Easiest thing is a new column as you suggest, but use try/otherwise and not if/then/else.

 

The formula is:

try Number.From([Column1]) otherwise null)

edhans_0-1704844878406.png

 

If the conversion to number returns an error, try/otherwise will return null. You can change that to 0 or whatever in the formula.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Thank you so much! Works perfectly

Good day JNelson,

A slight tweak on edhans solution is to transform the column using edhans formula. This avoids creating a new column and having to delete the old column.

= Table.TransformColumns( #"Previous Step", {{"Column1", each try Number.From(_) otherwise null }} )

 Hope this helps.

Thank you! That also works 🙂

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors