LN
function LN(arg1: number = null): number | string | boolean
Description
Returns the natural logarithm of a number.
Parameters
- arg1
number
null Is the positive real number for which you want the natural logarithm.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.LN(23));