Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
Solved! Go to Solution.
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
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
Those are big numbers. Perhaps:
Measure = CALCULATE(SQRT([Start1]*[START2]), [Start1] >0)
--Nate
User | Count |
---|---|
98 | |
75 | |
69 | |
49 | |
26 |