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
- 4 years ago
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.
Anonymous
4 years agoNot applicable
Can you show an example of what the text look like so we can suggest the right solution?