TRY NEW VERSION

SQRTPI

SQRTPI(arg1) → { number | string | boolean }

Returns the square root of (number * Pi).

Parameters:

Name Type Description
arg1 any

Is the number by which p is multiplied.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.SQRTPI(5));
builder.SaveFile("xlsx", "SQRTPI.xlsx");
builder.CloseFile();

Resulting document