Forum Discussion
mda
Advocate I
8 years agoAn argument of function 'POWER' has the wrong data type or the result is too large or too small.
When I'm computing POWER(-0.93, 0.08) I'm getting this error: An argument of function 'POWER' has the wrong data type or the result is too large or too small. Why DAX can't compute it? The v...
- 8 years ago
If you have both positive and negative numbers in a column you can use:
Column = SIGN([Column1]) * POWER(ABS([Column1]),0.08)
Greg_Deckler
Community Champion
8 years agoIf you have both positive and negative numbers in a column you can use:
Column = SIGN([Column1]) * POWER(ABS([Column1]),0.08)
Anonymous
7 years agoNot applicable
I have the same problem. Is this cause i used two calculated measures as my x and y axes? What does wrong data type mean?