Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a column with text, postive and negative numbers. How can I split these values in PowerBI?
Can you please help.
Solved! Go to Solution.
Hi @treesa2010
Try these codes to add custom columns with DAX:
negative =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(_V<0,'Table'[Values],blank())
Postive =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(_V>0,'Table'[Values],blank())
Text =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(ISBLANK(_V),'Table'[Values],blank())
output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @treesa2010
Try these codes to add custom columns with DAX:
negative =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(_V<0,'Table'[Values],blank())
Postive =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(_V>0,'Table'[Values],blank())
Text =
Var _V = IFERROR(CONVERT('Table'[Values],INTEGER),BLANK())
return
if(ISBLANK(_V),'Table'[Values],blank())
output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
User | Count |
---|---|
64 | |
59 | |
47 | |
33 | |
32 |
User | Count |
---|---|
84 | |
74 | |
54 | |
50 | |
44 |