SQRTPI
function SQRTPI(arg1: any = null): number | string | boolean
Description
Returns the square root of (number * Pi).
Parameters
- arg1
any
null Is the number by which p is multiplied.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.SQRTPI(5));