Forum Discussion
Mahamood0218
Helper II
4 years agoNeed to convert text to numeric in power bi dax function
Hi Experts ,
i am trying to convert text to numeric by using dax function
but it is not working ,pls suggest me
Probably better to do it in Power Query, but if you want to do it as a calculated column, you could try...
Days Commit2 = IF('Table'[Days_Commit] = "", BLANK(), VALUE('Table'[Days_Commit]))Replace 'Table' with your table name.
3 Replies
- KNP
Super User
Probably better to do it in Power Query, but if you want to do it as a calculated column, you could try...
Days Commit2 = IF('Table'[Days_Commit] = "", BLANK(), VALUE('Table'[Days_Commit]))Replace 'Table' with your table name.
- Mahamood0218
Helper II
- AnonymousNot applicable
Can you show an example of what the text look like so we can suggest the right solution?