Forum Discussion
SQRT Function returning Error
Hi Folks,
I have an issue in Dax funtion SQRT.
This is the error it is returning.
The measure we hade is supposed return the square root of product of 2 measure values.
Measure = SQRT([Part1] * [PART2])
This error is happening for the below mentioned values
Examples.
Please help me in solving this issue
Thanks
Mahesh R
- Anonymous5 years ago
Hi Anonymous ,
Please update the formula of Measure as below and check whether you can get the expected result:
Measure = SQRT ( ABS ( [Part1] * [PART2] ) )SQRT problem in DAX/excel - too many decimal places?
Handling Errors in DAX Expressions
Best Regards
2 Replies
- AnonymousNot applicable
Hi Anonymous ,
Please update the formula of Measure as below and check whether you can get the expected result:
Measure = SQRT ( ABS ( [Part1] * [PART2] ) )SQRT problem in DAX/excel - too many decimal places?
Handling Errors in DAX Expressions
Best Regards
- AnonymousNot applicable
Those are big numbers. Perhaps:
Measure = CALCULATE(SQRT([Start1]*[START2]), [Start1] >0)
--Nate