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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors