Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
71 | |
70 | |
38 | |
28 | |
26 |
User | Count |
---|---|
97 | |
88 | |
59 | |
43 | |
40 |