Forum Discussion
Anonymous
6 years agoNot applicable
Separate String and Numbers in the same column but diff rows
Just started learning Power BI I have a column where the values got mixed in with the name instead of just SKU numbers. How do I separate the value of this column to 2 new ones . So basically the...
- 6 years ago
Anonymous you can add two new columns as per below DAX Expression:
Product SKU Revised = IFERROR(VALUE( 'Table'[Product SKU] ),BLANK()) Name = IF( ISERROR(VALUE('Table'[Product SKU])), 'Table'[Product SKU] )
parry2k
6 years agoSuper User
Anonymous you can add two new columns as per below DAX Expression:
Product SKU Revised = IFERROR(VALUE( 'Table'[Product SKU] ),BLANK())
Name = IF( ISERROR(VALUE('Table'[Product SKU])), 'Table'[Product SKU] )
Anonymous
6 years agoNot applicable
Where/How do you apply this DAX expression?
I am not in that topic yet
- v-joesh-msft6 years agoSolution Sage
Hi Anonymous ,
As parry2k said, select -Modeling-New Column in the Data view and enter the formula:
Best Regards,
Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - parry2k6 years agoSuper User
Anonymous add new calculated column in your table where your original data column is