Returns the integer portion of a division.
Name | Type | Description |
arg1 | any | Is the dividend. |
arg2 | any | Is the divisor. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.QUOTIENT(1698, 30)); builder.SaveFile("xlsx", "QUOTIENT.xlsx"); builder.CloseFile();