Forum Discussion
Anonymous
5 years agoNot applicable
Convert minus number
How can I convert -1.5 of type text to number? I tried with value() but getting error : Cannot convert '-1.5' of type text to type number.
- Anonymous5 years ago
You can use the CONVERT() function keeping the second argument as Double.
For Example:
ConvertToDecimal = CONVERT(ALL('Table1'[Column1]),DOUBLE)
amitchandak
5 years agoSuper User
Anonymous , Try to change the data type to number(Power Query). Is it giving error
Anonymous
5 years agoNot applicable
Can you explain more with example?