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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.