Forum Discussion
Anonymous
5 years agoNot applicable
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([...
- 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
Anonymous
5 years agoNot applicable
Those are big numbers. Perhaps:
Measure = CALCULATE(SQRT([Start1]*[START2]), [Start1] >0)
--Nate