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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
B_Albuquerque
Frequent Visitor

Need Help: Filter of Non-Numeric Values

I need to create a new column that don't have the non-numeric values of the original one. Can someone help?

2 ACCEPTED SOLUTIONS

Its says that I can't convert from Text to Number.

View solution in original post

Anonymous
Not applicable

Can you use a calculated column with DAX like:

 

Column = IFERROR(VALUE([Column1]), BLANK())

 

The VALUE function will try to convert the parameter to a number. IFERROR will return blank

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Can you use a calculated column with DAX like:

 

Column = IFERROR(VALUE([Column1]), BLANK())

 

The VALUE function will try to convert the parameter to a number. IFERROR will return blank

Thanks, it worked!

mdannemiller
Frequent Visitor

Create the new column, set the values of the new column equal to the old column, then change the type of the new column to text.

 

Its says that I can't convert from Text to Number.

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.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors