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.
KNP
Super User
4 years agoProbably 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.
- Mahamood02184 years ago
Helper II