Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need to create a new column that don't have the non-numeric values of the original one. Can someone help?
Solved! Go to Solution.
Its says that I can't convert from Text to Number.
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
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!
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.