SQRTPI

SQRTPI(number)

Returns the square root of a number multiplied by PI.

numberThe number by which PI is multiplied.

REMARKS
* If "number" < 0, then #NUM! is returned.
* If "number" is not numeric, then #VALUE! is returned.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=SQRTPI(4) = 3.545
2=SQRT(4*PI()) = 3.545
3=SQRTPI(16) = 7.090
4=SQRT(16*PI()) = 7.090
5=SQRTPI(2) = 2.507
6=SQRTPI(0) = 0
7=SQRTPI(-10) = #NUM!
8=SQRTPI("some text") = #VALUE!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top