diff --git a/src/components/BootstrapBlazor.UniverSheet/BootstrapBlazor.UniverSheet.csproj b/src/components/BootstrapBlazor.UniverSheet/BootstrapBlazor.UniverSheet.csproj index 3bf3a352..e7b64435 100644 --- a/src/components/BootstrapBlazor.UniverSheet/BootstrapBlazor.UniverSheet.csproj +++ b/src/components/BootstrapBlazor.UniverSheet/BootstrapBlazor.UniverSheet.csproj @@ -1,7 +1,7 @@  - 9.0.2 + 9.0.3 diff --git a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.cs b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.cs index df24fb28..2de7a62d 100644 --- a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.cs +++ b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.cs @@ -3,6 +3,7 @@ // Website: https://www.blazor.zone or https://argozhang.github.io/ using Microsoft.AspNetCore.Components; +using System.Globalization; namespace BootstrapBlazor.Components; @@ -47,6 +48,16 @@ public partial class UniverSheet private UniverSheetData? _lastData; + /// + /// + /// + protected override void OnParametersSet() + { + base.OnParametersSet(); + + Lang ??= CultureInfo.CurrentUICulture.Name; + } + /// /// /// diff --git a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.js b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.js index ee37c071..94ced89f 100644 --- a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.js +++ b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheet.razor.js @@ -8,11 +8,16 @@ export async function init(id, invoke, options) { return; } + const { theme, lang, plugins, data } = options; const univerSheet = { el, invoke, - options + data, + plugins, + theme, + lang }; + await createUniverSheetAsync(univerSheet); Data.set(id, univerSheet); diff --git a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheetData.cs b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheetData.cs index 8050b024..eab17e8f 100644 --- a/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheetData.cs +++ b/src/components/BootstrapBlazor.UniverSheet/Components/UniverSheetData.cs @@ -21,7 +21,12 @@ public class UniverSheetData public string? CommandName { get; set; } /// - /// 获得/设置 数据 默认 null 未设置 + /// 获得/设置 UniverSheet workbook 数据 默认 null 未设置 + /// + public object? WorkbookData { get; set; } + + /// + /// 获得/设置 附加业务数据 默认 null 未设置 /// public object? Data { get; set; } } diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/plugin.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/plugin.js index 454f0d8a..b9d27fb7 100644 --- a/src/components/BootstrapBlazor.UniverSheet/wwwroot/plugin.js +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/plugin.js @@ -1,8 +1,7 @@ import DataService from './data-service.js' -const { Plugin, Injector, setDependencies, UniverInstanceType } = UniverCore; +const { Plugin, Injector, setDependencies } = UniverCore; -// 定义插件类 export class DefaultPlugin extends Plugin { static pluginName = 'DefaultPlugin'; @@ -28,10 +27,10 @@ export class DefaultPlugin extends Plugin { } receiveData(payload) { - const { messageName, commandName, data } = payload; + const { messageName, commandName, data, workbookData } = payload; if (messageName === null) { if (commandName === 'SetWorkbook') { - this.setWorkbookData(JSON.parse(data)); + this.setWorkbookData(JSON.parse(workbookData)); } else if (commandName === 'GetWorkbook') { return this.getWorkbookData(); @@ -65,7 +64,7 @@ export class DefaultPlugin extends Plugin { delete data.resources; return { messageName: null, - commandName: 'Save', + commandName: null, data: JSON.stringify(data) }; } diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer.js index 81a3379d..cfa85d11 100644 --- a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer.js +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer.js @@ -1,28 +1,28 @@ import { addScript, addLink } from '../BootstrapBlazor/modules/utility.js' import DataService from './data-service.js' -const loadAssets = async () => { - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/react.production.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/react-dom.production.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/rxjs.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.presets.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-core.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-drawing.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.sheets-zen-editor.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-data-validation.umd.min.js'); +const loadAssets = async lang => { + console.log(lang, 'lang'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/react.production.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/react-dom.production.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/rxjs.umd.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/univerjs.presets.umd.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-core/index.umd.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-drawing/index.umd.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/univerjs.sheets-zen-editor/index.umd.min.js'); + await addScript('./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-data-validation/index.umd.min.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-core.locales.zh-CN.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-drawing.locales.zhCN.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.sheets-zen-editor.locales.zh-CN.js'); - await addScript('./_content/BootstrapBlazor.UniverSheet/univer/js/univerjs.preset-sheets-data-validation.locales.zh-CN.js'); + await addScript(`./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-core/locales/${lang}.js`); + await addScript(`./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-drawing/locales/${lang}.js`); + await addScript(`./_content/BootstrapBlazor.UniverSheet/univer/univerjs.sheets-zen-editor/locales/${lang}.js`); + await addScript(`./_content/BootstrapBlazor.UniverSheet/univer/univerjs.preset-sheets-data-validation/locales/${lang}.js`); - await addLink('./_content/BootstrapBlazor.UniverSheet/univer/css/univer-sheet.bundle.css'); + await addLink('./_content/BootstrapBlazor.UniverSheet/univer/univer-sheet.bundle.css'); } - export async function createUniverSheetAsync(sheet) { - await loadAssets(); - + await loadAssets(sheet.lang); + const { el } = sheet; const { LocaleType, merge } = UniverCore; const { createUniver } = UniverPresets; @@ -31,18 +31,18 @@ export async function createUniverSheetAsync(sheet) { const { UniverSheetsZenEditorPlugin } = UniverSheetsZenEditor const { UniverSheetsDataValidationPlugin } = UniverSheetsDataValidation const { UniverSheetsDataValidationUIPlugin } = UniverSheetsDataValidationUi - const { defaultTheme } = UniverDesign; - + const lang = sheet.lang.replace('-', '') + const langStr = lang.charAt(0).toUpperCase() + lang.slice(1) const options = { - theme: sheet.options.theme ?? defaultTheme, - locale: sheet.options.lang ?? LocaleType.ZH_CN, + theme: UniverDesign[sheet.theme] ?? UniverDesign.defaultTheme, //'defaultTheme' | greenTheme + locale: lang, locales: { - [LocaleType.ZH_CN]: merge( + [lang]: merge( {}, - UniverPresetSheetsCoreZhCN, - UniverPresetSheetsDrawingZhCN, - UniverSheetsZenEditorZhCN, - UniverSheetsDataValidationUiZhCN, + window[`UniverPresetSheetsCore${langStr}`], + window[`UniverPresetSheetsDrawing${langStr}`], + window[`UniverSheetsZenEditor${langStr}`], + window[`UniverSheetsDataValidationUi${langStr}`], ), }, plugins: [ @@ -51,7 +51,7 @@ export async function createUniverSheetAsync(sheet) { UniverSheetsDataValidationUIPlugin, ] }; - const plugins = sheet.options.plugins ?? { + const plugins = sheet.plugins ?? { DefaultPlugin: '_content/BootstrapBlazor.UniverSheet/plugin.js' }; for (const name in plugins) { @@ -70,9 +70,9 @@ export async function createUniverSheetAsync(sheet) { ...options }); - const { data } = sheet.options.data || {}; - if (data) { - const option = typeof data === 'string' ? JSON.parse(data) : data; + const { workbookData } = sheet.data || {}; + if (workbookData) { + const option = typeof workbookData === 'string' ? JSON.parse(workbookData) : workbookData; univerAPI.createWorkbook(option); } else { diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univer-sheet.bundle.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univer-sheet.bundle.css deleted file mode 100644 index cdcb0841..00000000 --- a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univer-sheet.bundle.css +++ /dev/null @@ -1,23 +0,0 @@ -@import 'univerjs.preset-sheets-core.css'; -@import 'univerjs.preset-sheets-drawing.css'; -@import 'univerjs.sheets-zen-editor.css'; -@import 'univerjs.preset-sheets-data-validation.css'; - -.bb-univer-sheet { - width: 100%; - height: 100%; - overflow: hidden; -} - -.univer-fixed { - position: absolute; -} - -.univer-theme { - position: relative; - z-index: 1200; -} - -.univer-theme [role="toolbar"] .univer-justify-center { - justify-content: flex-start; -} diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/react-dom.production.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/react-dom.production.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/react-dom.production.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/react-dom.production.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/react.production.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/react.production.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/react.production.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/react.production.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/rxjs.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/rxjs.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/rxjs.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/rxjs.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univer-sheet.bundle.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univer-sheet.bundle.css new file mode 100644 index 00000000..86a00fc5 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univer-sheet.bundle.css @@ -0,0 +1,23 @@ +@import 'univerjs.preset-sheets-core/index.css'; +@import 'univerjs.preset-sheets-drawing/index.css'; +@import 'univerjs.sheets-zen-editor/index.css'; +@import 'univerjs.preset-sheets-data-validation/index.css'; + +.bb-univer-sheet { + width: 100%; + height: 100%; + overflow: hidden; +} + +.univer-fixed { + position: absolute; +} + +.univer-theme { + position: relative; + z-index: 1200; +} + + .univer-theme [role="toolbar"] > div { + justify-content: flex-start; + } diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-core.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/index.css similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-core.css rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/index.css diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-core.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/index.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-core.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/index.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/en-US.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/en-US.js new file mode 100644 index 00000000..fe47ab7a --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/en-US.js @@ -0,0 +1,75 @@ +// @univerjs/ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverUiEnUS=t())})(this,function(){"use strict";return{ribbon:{start:"Start",insert:"Insert",formulas:"Formulas",data:"Data",view:"View",others:"Others",more:"More"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"Microsoft YaHei",SimSun:"SimSun",SimHei:"SimHei",Kaiti:"Kaiti",FangSong:"FangSong",NSimSun:"NSimSun",STXinwei:"STXinwei",STXingkai:"STXingkai",STLiti:"STLiti",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"Shortcuts"},shortcut:{undo:"Undo",redo:"Redo",cut:"Cut",copy:"Copy",paste:"Paste","shortcut-panel":"Toggle Shortcut Panel"},"common-edit":"Common Editing Shortcuts","toggle-shortcut-panel":"Toggle Shortcut Panel",clipboard:{authentication:{title:"Permission Denied",content:"Please allow Univer to access your clipboard."}},textEditor:{formulaError:"Please enter a valid formula, such as =SUM(A1)",rangeError:"Please enter a valid range, such as A1:B10"},rangeSelector:{title:"Select a data range",addAnotherRange:"Add range",buttonTooltip:"Select data range",placeHolder:"Select range or enter.",confirm:"Confirm",cancel:"Cancel"},"global-shortcut":"Global Shortcut","zoom-slider":{resetTo:"Reset to"}}}); + + +// @univerjs/docs-ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiEnUS=t())})(this,function(){"use strict";return{toolbar:{undo:"Undo",redo:"Redo",font:"Font",fontSize:"Font size",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",subscript:"Subscript",superscript:"Superscript",underline:"Underline",textColor:{main:"Text color",right:"Choose color"},fillColor:{main:"Text Background color",right:"Choose color"},table:{main:"Table",insert:"Insert Table",colCount:"Column count",rowCount:"Row count"},resetColor:"Reset",order:"Ordered list",unorder:"Unordered list",checklist:"Task list",documentFlavor:"Modern Mode",alignLeft:"Align Left",alignCenter:"Align Center",alignRight:"Align Right",alignJustify:"Justify",headerFooter:"Header & Footer"},table:{insert:"Insert",insertRowAbove:"Insert row above",insertRowBelow:"Insert row below",insertColumnLeft:"Insert column left",insertColumnRight:"Insert column right",delete:"Table delete",deleteRows:"Delete row",deleteColumns:"Delete column",deleteTable:"Delete table"},headerFooter:{header:"Header",footer:"Footer",panel:"Header & Footer Settings",firstPageCheckBox:"Different first page",oddEvenCheckBox:"Different odd and even pages",headerTopMargin:"Header top margin(px)",footerBottomMargin:"Footer bottom margin(px)",closeHeaderFooter:"Close header & footer",disableText:"Header & footer settings are disabled"},doc:{menu:{paragraphSetting:"Paragraph Settings"},slider:{paragraphSetting:"Paragraph Settings"},paragraphSetting:{alignment:"Alignment",indentation:"Indentation",left:"Left",right:"Right",firstLine:"First Line",hanging:"Hanging",spacing:"Spacing",before:"Before",after:"After",lineSpace:"Line Space",multiSpace:"Multi Space",fixedValue:"Fixed Value(px)"}}}}); + + +// @univerjs/sheets/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsEnUS=t())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(Copy{0})",sheet:"Sheet"},info:{overlappingSelections:"Cannot use that command on overlapping selections",acrossMergedCell:"Across a merged cell",partOfCell:"Only part of a merged cell is selected",hideSheet:"No visible sheet after you hide this"}}}}); + + +// @univerjs/sheets-ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsUiEnUS=t())})(this,function(){"use strict";return{spreadsheetLabel:"Spreadsheet",spreadsheetRightLabel:"more Sheets",toolbar:{undo:"Undo",redo:"Redo",formatPainter:"Paint format",font:"Font",fontSize:"Font size",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",subscript:"Subscript",superscript:"Superscript",underline:"Underline",textColor:{main:"Text color",right:"Choose color"},resetColor:"Reset",fillColor:{main:"Fill color",right:"Choose color"},border:{main:"Border",right:"Border style"},mergeCell:{main:"Merge cells",right:"Choose merge type"},horizontalAlignMode:{main:"Horizontal align",right:"Alignment"},verticalAlignMode:{main:"Vertical align",right:"Alignment"},textWrapMode:{main:"Text wrap",right:"Text wrap mode"},textRotateMode:{main:"Text rotate",right:"Text rotate mode"},more:"More",toggleGridlines:"Toggle Gridlines"},align:{left:"left",center:"center",right:"right",top:"top",middle:"middle",bottom:"bottom"},button:{confirm:"OK",cancel:"Cancel",close:"Close",update:"Update",delete:"Delete",insert:"Insert",prevPage:"Previous",nextPage:"Next",total:"total:"},punctuation:{tab:"Tab",semicolon:"semicolond",comma:"comma",space:"space"},colorPicker:{collapse:"Collapse",customColor:"CUSTOM",change:"Change",confirmColor:"OK",cancelColor:"Cancel"},borderLine:{borderTop:"borderTop",borderBottom:"borderBottom",borderLeft:"borderLeft",borderRight:"borderRight",borderNone:"borderNone",borderAll:"borderAll",borderOutside:"borderOutside",borderInside:"borderInside",borderHorizontal:"borderHorizontal",borderVertical:"borderVertical",borderColor:"borderColor",borderSize:"borderSize",borderType:"borderType"},merge:{all:"Merge all",vertical:"Vertical merge",horizontal:"Horizontal merge",cancel:"Cancel merge",overlappingError:"Cannot merge overlapping areas",partiallyError:"Cannot perform this operation on partially merged cells",confirm:{title:"Continue merging would only keep the upper-left cell value, discard other values. Are you sure to continue?",cancel:"Cancel merging",confirm:"Continue merging",waring:"Waring",dismantleMergeCellWaring:"This will cause some merged cells to be split. Do you want to continue?"}},filter:{confirm:{error:"There was a problem",notAllowedToInsertRange:"Not allowed to move cells here until filter is cleared"}},textWrap:{overflow:"Overflow",wrap:"Wrap",clip:"Clip"},textRotate:{none:"None",angleUp:"Tilt Up",angleDown:"Tilt Down",vertical:"Stack Vertically",rotationUp:"Rotate Up",rotationDown:"Rotate Down"},sheetConfig:{delete:"Delete",copy:"Copy",rename:"Rename",changeColor:"Change color",hide:"Hide",unhide:"Unhide",moveLeft:"Move left",moveRight:"Move right",resetColor:"Reset color",cancelText:"Cancel",chooseText:"Confirm color",tipNameRepeat:"The name of the tab page cannot be repeated! Please revise",noMoreSheet:"The workbook contains at least one visual worksheet. To delete the selected worksheet, please insert a new worksheet or show a hidden worksheet.",confirmDelete:"Are you sure to delete",redoDelete:"Can be undo by Ctrl+Z",noHide:"Can't hide, at least keep one sheet tag",chartEditNoOpt:"This operation is not allowed in chart editing mode!",sheetNameErrorTitle:"There was a problem",sheetNameSpecCharError:"The name cannot exceed 31 characters, cannot start or end with ', and cannot contain: [ ] : \\ ? * /",sheetNameCannotIsEmptyError:"The sheet name cannot be empty.",sheetNameAlreadyExistsError:"The sheet name already exists. Please enter another name.",deleteSheet:"Delete worksheet",deleteSheetContent:"Confirm to delete this worksheet. It will not be retrieved after deletion. Are you sure you want to delete it?",addProtectSheet:"Protect Worksheet",removeProtectSheet:"Unprotect Worksheet",changeSheetPermission:"Change Worksheet Permissions",viewAllProtectArea:"View All Protection Ranges"},rightClick:{copy:"Copy",cut:"Cut",paste:"Paste",pasteSpecial:"Paste Special",pasteValue:"Paste Value",pasteFormat:"Paste Format",pasteColWidth:"Paste Column Width",pasteBesidesBorder:"Paste Besides Border Styles",insert:"Insert",insertRow:"Insert Row",insertRowBefore:"Insert Row Before",insertRowsAfter:"Insert",insertRowsAbove:"Insert",insertRowsAfterSuffix:"rows after",insertRowsAboveSuffix:"rows above",insertColumn:"Insert Column",insertColumnBefore:"Insert Column Before",insertColsLeft:"Insert",insertColsRight:"Insert",insertColsLeftSuffix:"cols left",insertColsRightSuffix:"cols right",delete:"Delete",deleteCell:"Delete Cell",insertCell:"Insert Cell",deleteSelected:"Delete Selected ",hide:"Hide",hideSelected:"Hide Selected ",showHide:"Show Hidden",toTopAdd:"Towards Top Add",toBottomAdd:"Towards Bottom Add",toLeftAdd:"Towards Left Add",toRightAdd:"Towards Right Add",deleteSelectedRow:"Delete Selected row",deleteSelectedColumn:"Delete Selected column",hideSelectedRow:"Hide Selected Row",showHideRow:"Show Selected Row",rowHeight:"Row Height",hideSelectedColumn:"Hide Selected Column",showHideColumn:"Show Hide Column",columnWidth:"Column Width",moveLeft:"Move Left",moveUp:"Move up",moveRight:"Move Right",moveDown:"Move Down",add:"Add",row:"Row",column:"Column",confirm:"Confirm",clearSelection:"Clear",clearContent:"Clear Contents",clearFormat:"Clear Formats",clearAll:"Clear All",root:"Root",log:"Log",delete0:"Delete 0 values at both ends",removeDuplicate:"Remove duplicate values",byRow:"By row",byCol:"By column",generateNewMatrix:"Generate new matrix",fitContent:"Fit for data",freeze:"Freeze",freezeCol:"Freeze to this column",freezeRow:"Freeze to this row",cancelFreeze:"Cancel freeze",deleteAllRowsAlert:"You can't delete all the rows on the sheet",deleteAllColumnsAlert:"You can't delete all the columns on the sheet",hideAllRowsAlert:"You can't hide all the rows on the sheet",hideAllColumnsAlert:"You can't hide all the columns on the sheet",protectRange:"Protect Rows And Columns",editProtectRange:"Set Protection Range",removeProtectRange:"Remove Protection Range",turnOnProtectRange:"Add Protection Range",viewAllProtectArea:"View All Protection Ranges"},info:{tooltip:"Tooltip",error:"Error",notChangeMerge:"You cannot make partial changes to the merged cells",detailUpdate:"New opened",detailSave:"Local cache restored",row:"",column:"",loading:"Loading...",copy:"Copy",return:"Exit",rename:"Rename",tips:"Rename",noName:"Untitled spreadsheet",wait:"waiting for update",add:"Add",addLast:"more rows at bottom",backTop:"Back to the top",pageInfo:"Total ${total}, ${totalPage} page, current ${currentPage}",nextPage:"Next",tipInputNumber:"Please enter the number",tipInputNumberLimit:"The increase range is limited to 1-100",tipRowHeightLimit:"Row height must be between 0 ~ 545",tipColumnWidthLimit:"The column width must be between 0 ~ 2038",pageInfoFull:"Total ${total}, ${totalPage} page, All data displayed",problem:"There was a problem",forceStringInfo:"Number stored as text"},clipboard:{paste:{exceedMaxCells:"The number of cells pasted exceeds the maximum number of cells",overlappingMergedCells:"The paste area overlaps with merged cells"},shortCutNotify:{title:"Kindly paste using keyboard shortcuts.",useShortCutInstead:"Detected Excel content. Use keyboard shortcut to paste."}},statusbar:{sum:"Sum",average:"Average",min:"Min",max:"Max",count:"Numerical Count",countA:"Count",clickToCopy:"Click to Copy",copied:"Copied"},autoFill:{copy:"Copy Cell",series:"Fill Series",formatOnly:"Format Only",noFormat:"No Format"},rangeSelector:{placeholder:"Select range or input value",tooltip:"Select range"},shortcut:{sheet:{"zoom-in":"Zoom in","zoom-out":"Zoom out","reset-zoom":"Reset zoom level","select-below-cell":"Select the cell below","select-up-cell":"Select the cell above","select-left-cell":"Select the left cell","select-right-cell":"Select the right cell","select-next-cell":"Select the next cell","select-previous-cell":"Select the previous cell","select-up-value-cell":"Select the cell above that has value","select-below-value-cell":"Select the cell below that has value","select-left-value-cell":"Select the cell left that has value","select-right-value-cell":"Select the cell right that has value","expand-selection-down":"Expand selection down","expand-selection-up":"Expand selection up","expand-selection-left":"Expand selection left","expand-selection-right":"Expand selection right","expand-selection-to-left-gap":"Expand selection to the left gap","expand-selection-to-below-gap":"Expand selection to the below gap","expand-selection-to-right-gap":"Expand selection to the right gap","expand-selection-to-up-gap":"Expand selection to the up gap","select-all":"Select all","toggle-editing":"Toggle editing","delete-and-start-editing":"Clear and start editing","abort-editing":"Abort editing","break-line":"Break line","set-bold":"Toggle bold","start-editing":"Start Editing (Selection into the Editor)","set-italic":"Toggle italic","set-underline":"Toggle underline","set-strike-through":"Toggle strike through"}},"sheet-view":"Sheet View","sheet-edit":"Sheet Edit",definedName:{managerTitle:"Manager named",managerDescription:"Create a defined name by selecting cells or formulas, and entering the desired name into the text box.",addButton:"Add a defined name",featureTitle:"Defined names",ratioRange:"Range",ratioFormula:"Formula",confirm:"Confirm",cancel:"Cancel",scopeWorkbook:"Workbook",inputNamePlaceholder:"Please enter a name(No space allowed)",inputCommentPlaceholder:"Please enter a comment",inputRangePlaceholder:"Please input range(No space allowed)",inputFormulaPlaceholder:"Please input a formula(No space allowed)",nameEmpty:"Name cannot be empty",nameDuplicate:"Name already exists",formulaOrRefStringEmpty:"Formula or reference string cannot be empty",formulaOrRefStringInvalid:"Invalid formula or reference string",defaultName:"DefinedName",updateButton:"Update",deleteButton:"Delete",deleteConfirmText:"Are you sure you want to delete this defined name?",nameConflict:"The name conflicts with the function name",nameInvalid:"The name is invalid",nameSheetConflict:"The name conflicts with the sheet name"},uploadLoading:{loading:"Loading..., remaining",error:"Error"},permission:{toolbarMenu:"Protection",panel:{title:"Protect Rows and Columns",name:"Name",protectedRange:"Protected Range",permissionDirection:"Permission Description",permissionDirectionPlaceholder:"Enter permission description",editPermission:"Edit Permissions",onlyICanEdit:"Only I can edit",designedUserCanEdit:"Specified users can edit",viewPermission:"View Permissions",othersCanView:"Others can view",noOneElseCanView:"No one else can view",designedPerson:"Specified persons",addPerson:"Add person",canEdit:"Can edit",canView:"Can view",delete:"Delete",currentSheet:"Current sheet",allSheet:"All sheets",edit:"Edit",Print:"Print",Comment:"Comment",Copy:"Copy",SetCellStyle:"Set cell style",SetCellValue:"Set cell value",SetHyperLink:"Set hyperlink",Sort:"Sort",Filter:"Filter",PivotTable:"Pivot table",FloatImage:"Float image",RowHeightColWidth:"Row height and column width",RowHeightColWidthReadonly:"Read-only row height and column width",FilterReadonly:"Read-only filter",nameError:"Name cannot be empty",created:"Created",iCanEdit:"I can edit",iCanNotEdit:"I can't edit",iCanView:"I can view",iCanNotView:"I can't view",emptyRangeError:"Range cannot be empty",rangeOverlapError:"Range cannot overlap",rangeOverlapOverPermissionError:"Range cannot overlap with the range that has the same permission",InsertHyperlink:"Insert hyperlink",SetRowStyle:"Set row style",SetColumnStyle:"Set column style",InsertColumn:"Insert column",InsertRow:"Insert row",DeleteRow:"Delete row",DeleteColumn:"Delete column",EditExtraObject:"Edit extra object"},dialog:{allowUserToEdit:"Allow user to edit",allowedPermissionType:"Allowed permission types",setCellValue:"Set cell value",setCellStyle:"Set cell style",copy:"Copy",alert:"Alert",search:"Search",alertContent:"This range has been protected and no editing permissions are currently available. If you need to edit, please contact the creator.",userEmpty:"no designated person , Share link to invite specific people.",listEmpty:"You haven't set up any ranges or sheets as protected.",commonErr:"The range is protected, and you do not have permission for this operation. To edit, please contact the creator.",editErr:"The range is protected, and you do not have edit permission. To edit, please contact the creator.",pasteErr:"The range is protected, and you do not have paste permission. To paste, please contact the creator.",setStyleErr:"The range is protected, and you do not have permission to set styles. To set styles, please contact the creator.",copyErr:"The range is protected, and you do not have copy permission. To copy, please contact the creator.",workbookCopyErr:"The workbook is protected, and you do not have permission to copy. To copy, please contact the creator.",setRowColStyleErr:"The range is protected, and you do not have permission to set row and column styles. To set row and column styles, please contact the creator.",moveRowColErr:"The range is protected, and you do not have permission to move rows and columns. To move rows and columns, please contact the creator.",moveRangeErr:"The range is protected, and you do not have permission to move the selection. To move the selection, please contact the creator.",autoFillErr:"The range is protected, and you do not have permission for auto-fill. To use auto-fill, please contact the creator.",filterErr:"The range is protected, and you do not have filtering permission. To filter, please contact the creator.",operatorSheetErr:"The worksheet is protected, and you do not have permission to operate the worksheet. To operate the worksheet, please contact the creator.",insertOrDeleteMoveRangeErr:"The inserted or deleted range intersects with the protected range, and this operation is not supported for now.",printErr:"The worksheet is protected, and you do not have permission to print. To print, please contact the creator.",formulaErr:"The range or the referenced range is protected, and you do not have edit permission. To edit, please contact the creator.",hyperLinkErr:"The range is protected, and you do not have permission to set hyperlinks. To set hyperlinks, please contact the creator."},button:{confirm:"Confirm",cancel:"Cancel",addNewPermission:"Add new permission"}}}}); + + +// @univerjs/sheets-formula/locale/en-US +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaEnUS=n())})(this,function(){"use strict";return{formula:{progress:{analyzing:"Analyzing",calculating:"Calculating","array-analysis":"Array Analysis","array-calculation":"Array Calculation",done:"Done"}}}}); + + +// @univerjs/sheets-formula-ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaUiEnUS=t())})(this,function(){"use strict";return{formula:{insert:{tooltip:"Functions",sum:"SUM",average:"AVERAGE",count:"COUNT",max:"MAX",min:"MIN",more:"More Functions..."},functionList:{...{ACCRINT:{description:"Returns the accrued interest for a security that pays periodic interest",abstract:"Returns the accrued interest for a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},firstInterest:{name:"first_interest",detail:"The security's first interest date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."},calcMethod:{name:"calc_method",detail:"Is a logical value: interest accrues from the issue date = TRUE or ignored; interest accrues from the last coupon payment date = FALSE."}}},ACCRINTM:{description:"Returns the accrued interest for a security that pays interest at maturity",abstract:"Returns the accrued interest for a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},AMORDEGRC:{description:"Returns the depreciation for each accounting period by using a depreciation coefficient",abstract:"Returns the depreciation for each accounting period by using a depreciation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"Returns the depreciation for each accounting period",abstract:"Returns the depreciation for each accounting period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"cost",detail:"The cost of the asset."},datePurchased:{name:"date_purchased",detail:"The date of the purchase of the asset."},firstPeriod:{name:"first_period",detail:"The date of the end of the first period."},salvage:{name:"salvage",detail:"The salvage value at the end of the life of the asset."},period:{name:"period",detail:"The period."},rate:{name:"rate",detail:"The rate of depreciation."},basis:{name:"basis",detail:"The year basis to be used."}}},COUPDAYBS:{description:"Returns the number of days from the beginning of the coupon period to the settlement date",abstract:"Returns the number of days from the beginning of the coupon period to the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYS:{description:"Returns the number of days in the coupon period that contains the settlement date",abstract:"Returns the number of days in the coupon period that contains the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYSNC:{description:"Returns the number of days from the settlement date to the next coupon date",abstract:"Returns the number of days from the settlement date to the next coupon date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNCD:{description:"Returns the next coupon date after the settlement date",abstract:"Returns the next coupon date after the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNUM:{description:"Returns the number of coupons payable between the settlement date and maturity date",abstract:"Returns the number of coupons payable between the settlement date and maturity date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPPCD:{description:"Returns the previous coupon date before the settlement date",abstract:"Returns the previous coupon date before the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},CUMIPMT:{description:"Returns the cumulative interest paid between two periods",abstract:"Returns the cumulative interest paid between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},CUMPRINC:{description:"Returns the cumulative principal paid on a loan between two periods",abstract:"Returns the cumulative principal paid on a loan between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},DB:{description:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",abstract:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},month:{name:"month",detail:"The number of months in the first year. If month is omitted, it is assumed to be 12."}}},DDB:{description:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",abstract:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."}}},DISC:{description:"Returns the discount rate for a security",abstract:"Returns the discount rate for a security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},DOLLARDE:{description:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",abstract:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427"}],functionParameter:{fractionalDollar:{name:"fractional_dollar",detail:"A number expressed as an integer part and a fraction part, separated by a decimal symbol."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DOLLARFR:{description:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",abstract:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495"}],functionParameter:{decimalDollar:{name:"decimal_dollar",detail:"A decimal number."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DURATION:{description:"Returns the annual duration of a security with periodic interest payments",abstract:"Returns the annual duration of a security with periodic interest payments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},EFFECT:{description:"Returns the effective annual interest rate",abstract:"Returns the effective annual interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4"}],functionParameter:{nominalRate:{name:"nominal_rate",detail:"The nominal interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},FV:{description:"Returns the future value of an investment",abstract:"Returns the future value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},FVSCHEDULE:{description:"Returns the future value of an initial principal after applying a series of compound interest rates",abstract:"Returns the future value of an initial principal after applying a series of compound interest rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d"}],functionParameter:{principal:{name:"principal",detail:"The present value."},schedule:{name:"schedule",detail:"An array of interest rates to apply."}}},INTRATE:{description:"Returns the interest rate for a fully invested security",abstract:"Returns the interest rate for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},redemption:{name:"redemption",detail:"The amount to be received at maturity."},basis:{name:"basis",detail:"The type of day count basis to use."}}},IPMT:{description:"Returns the interest payment for an investment for a given period",abstract:"Returns the interest payment for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},IRR:{description:"Returns the internal rate of return for a series of cash flows",abstract:"Returns the internal rate of return for a series of cash flows",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers for which you want to calculate the internal rate of return. +1.Values must contain at least one positive value and one negative value to calculate the internal rate of return. +2.IRR uses the order of values to interpret the order of cash flows. Be sure to enter your payment and income values in the sequence you want. +3.If an array or reference argument contains text, logical values, or empty cells, those values are ignored.`},guess:{name:"guess",detail:"A number that you guess is close to the result of IRR."}}},ISPMT:{description:"Calculates the interest paid during a specific period of an investment",abstract:"Calculates the interest paid during a specific period of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc"}],functionParameter:{rate:{name:"rate",detail:"The interest rate for the investment."},per:{name:"per",detail:"The period for which you want to find the interest, and must be between 1 and Nper."},nper:{name:"nper",detail:"The total number of payment periods for the investment."},pv:{name:"pv",detail:"The present value of the investment. For a loan, Pv is the loan amount."}}},MDURATION:{description:"Returns the Macauley modified duration for a security with an assumed par value of $100",abstract:"Returns the Macauley modified duration for a security with an assumed par value of $100",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},MIRR:{description:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",abstract:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers. These numbers represent a series of payments (negative values) and income (positive values) occurring at regular periods. +1.Values must contain at least one positive value and one negative value to calculate the modified internal rate of return. Otherwise, MIRR returns the #DIV/0! error value. +2.If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.`},financeRate:{name:"finance_rate",detail:"The interest rate you pay on the money used in the cash flows."},reinvestRate:{name:"reinvest_rate",detail:"The interest rate you receive on the cash flows as you reinvest them."}}},NOMINAL:{description:"Returns the annual nominal interest rate",abstract:"Returns the annual nominal interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b"}],functionParameter:{effectRate:{name:"effect_rate",detail:"The effective interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},NPER:{description:"Returns the number of periods for an investment",abstract:"Returns the number of periods for an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},NPV:{description:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",abstract:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568"}],functionParameter:{rate:{name:"rate",detail:"The rate of discount over the length of one period."},value1:{name:"value1",detail:"1 to 254 arguments representing the payments and income."},value2:{name:"value2",detail:"1 to 254 arguments representing the payments and income."}}},ODDFPRICE:{description:"Returns the price per $100 face value of a security with an odd first period",abstract:"Returns the price per $100 face value of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDFYIELD:{description:"Returns the yield of a security with an odd first period",abstract:"Returns the yield of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLPRICE:{description:"Returns the price per $100 face value of a security with an odd last period",abstract:"Returns the price per $100 face value of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLYIELD:{description:"Returns the yield of a security with an odd last period",abstract:"Returns the yield of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PDURATION:{description:"Returns the number of periods required by an investment to reach a specified value",abstract:"Returns the number of periods required by an investment to reach a specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"rate",detail:"Rate is the interest rate per period."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the desired future value of the investment."}}},PMT:{description:"Returns the periodic payment for an annuity",abstract:"Returns the periodic payment for an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PPMT:{description:"Returns the payment on the principal for an investment for a given period",abstract:"Returns the payment on the principal for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PRICE:{description:"Returns the price per $100 face value of a security that pays periodic interest",abstract:"Returns the price per $100 face value of a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEDISC:{description:"Returns the price per $100 face value of a discounted security",abstract:"Returns the price per $100 face value of a discounted security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},discount:{name:"discount",detail:"The security's discount rate."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEMAT:{description:"Returns the price per $100 face value of a security that pays interest at maturity",abstract:"Returns the price per $100 face value of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PV:{description:"Returns the present value of an investment",abstract:"Returns the present value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},RATE:{description:"Returns the interest rate per period of an annuity",abstract:"Returns the interest rate per period of an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce"}],functionParameter:{nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."},guess:{name:"guess",detail:"Your guess for what the rate will be."}}},RECEIVED:{description:"Returns the amount received at maturity for a fully invested security",abstract:"Returns the amount received at maturity for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},discount:{name:"discount",detail:"The security's discount rate."},basis:{name:"basis",detail:"The type of day count basis to use."}}},RRI:{description:"Returns an equivalent interest rate for the growth of an investment",abstract:"Returns an equivalent interest rate for the growth of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"nper",detail:"Nper is the number of periods for the investment."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the future value of the investment."}}},SLN:{description:"Returns the straight-line depreciation of an asset for one period",abstract:"Returns the straight-line depreciation of an asset for one period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."}}},SYD:{description:"Returns the sum-of-years' digits depreciation of an asset for a specified period",abstract:"Returns the sum-of-years' digits depreciation of an asset for a specified period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."},per:{name:"per",detail:"The period and must use the same units as life."}}},TBILLEQ:{description:"Returns the bond-equivalent yield for a Treasury bill",abstract:"Returns the bond-equivalent yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLPRICE:{description:"Returns the price per $100 face value for a Treasury bill",abstract:"Returns the price per $100 face value for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLYIELD:{description:"Returns the yield for a Treasury bill",abstract:"Returns the yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},pr:{name:"pr",detail:"The Treasury bill's price per $100 face value."}}},VDB:{description:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",abstract:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},startPeriod:{name:"start_period",detail:"The starting period for which you want to calculate the depreciation."},endPeriod:{name:"end_period",detail:"The ending period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."},noSwitch:{name:"no_switch",detail:"A logical value specifying whether to switch to straight-line depreciation when depreciation is greater than the declining balance calculation."}}},XIRR:{description:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d"}],functionParameter:{values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."},guess:{name:"guess",detail:"A number that you guess is close to the result of XIRR."}}},XNPV:{description:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7"}],functionParameter:{rate:{name:"rate",detail:"The discount rate to apply to the cash flows."},values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."}}},YIELD:{description:"Returns the yield on a security that pays periodic interest",abstract:"Returns the yield on a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDDISC:{description:"Returns the annual yield for a discounted security; for example, a Treasury bill",abstract:"Returns the annual yield for a discounted security; for example, a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDMAT:{description:"Returns the annual yield of a security that pays interest at maturity",abstract:"Returns the annual yield of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{DATE:{description:"Returns the serial number of a particular date",abstract:"Returns the serial number of a particular date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"year",detail:"The value of the year argument can include one to four digits. Excel interprets the year argument according to the date system your computer is using. By default, Univer uses the 1900 date system, which means the first date is January 1, 1900."},month:{name:"month",detail:"A positive or negative integer representing the month of the year from 1 to 12 (January to December)."},day:{name:"day",detail:"A positive or negative integer representing the day of the month from 1 to 31."}}},DATEDIF:{description:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",abstract:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the first, or starting date of a given period."},endDate:{name:"end_date",detail:"A date that represents the last, or ending, date of the period."},method:{name:"method",detail:"The type of information that you want returned."}}},DATEVALUE:{description:"Converts a date in the form of text to a serial number.",abstract:"Converts a date in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"date_text",detail:`Text that represents a date in an Excel date format, or a reference to a cell that contains text that represents a date in an Excel date format. For example, "1/30/2008" or "30-Jan-2008" are text strings within quotation marks that represent dates. +Using the default date system in Microsoft Excel for Windows, the date_text argument must represent a date between January 1, 1900 and December 31, 9999. The DATEVALUE function returns the #VALUE! error value if the value of the date_text argument falls outside of this range. +If the year portion of the date_text argument is omitted, the DATEVALUE function uses the current year from your computer's built-in clock. Time information in the date_text argument is ignored.`}}},DAY:{description:"Returns the day of a date, represented by a serial number. The day is given as an integer ranging from 1 to 31.",abstract:"Converts a serial number to a day of the month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},DAYS:{description:"Returns the number of days between two dates",abstract:"Returns the number of days between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."}}},DAYS360:{description:"Calculates the number of days between two dates based on a 360-day year",abstract:"Calculates the number of days between two dates based on a 360-day year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},method:{name:"method",detail:"A logical value that specifies whether to use the U.S. or European method in the calculation."}}},EDATE:{description:"Returns the serial number that represents the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue.",abstract:"Returns the serial number of the date that is the indicated number of months before or after the start date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."},months:{name:"months",detail:"The number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date."}}},EOMONTH:{description:"Returns the serial number of the last day of the month before or after a specified number of months",abstract:"Returns the serial number of the last day of the month before or after a specified number of months",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the starting date."},months:{name:"months",detail:"The number of months before or after start_date."}}},EPOCHTODATE:{description:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",abstract:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"timestamp",detail:"A Unix epoch timestamp, in seconds, milliseconds, or microseconds."},unit:{name:"unit",detail:`The unit of time in which the timestamp is expressed. 1 by default: +1 indicates the time unit is seconds. +2 indicates the time unit is milliseconds. +3 indicates the time unit is microseconds.`}}},HOUR:{description:"Converts a serial number to an hour",abstract:"Converts a serial number to an hour",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},ISOWEEKNUM:{description:"Returns the number of the ISO week number of the year for a given date",abstract:"Returns the number of the ISO week number of the year for a given date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"date",detail:"Date is the date-time code used by Excel for date and time calculation."}}},MINUTE:{description:"Converts a serial number to a minute",abstract:"Converts a serial number to a minute",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},MONTH:{description:"Returns the month of a date represented by a serial number. The month is given as an integer, ranging from 1 (January) to 12 (December).",abstract:"Converts a serial number to a month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8"}],functionParameter:{serialNumber:{name:"serial_number",detail:"Required. The date of the month you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},NETWORKDAYS:{description:"Returns the number of whole workdays between two dates",abstract:"Returns the number of whole workdays between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NETWORKDAYS_INTL:{description:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",abstract:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NOW:{description:"Returns the serial number of the current date and time.",abstract:"Returns the serial number of the current date and time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46"}],functionParameter:{}},SECOND:{description:"Converts a serial number to a second",abstract:"Converts a serial number to a second",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},TIME:{description:"Returns the serial number of a particular time.",abstract:"Returns the serial number of a particular time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457"}],functionParameter:{hour:{name:"hour",detail:"A number from 0 (zero) to 32767 representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, TIME(27,0,0) = TIME(3,0,0) = .125 or 3:00 AM."},minute:{name:"minute",detail:"A number from 0 to 32767 representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM."},second:{name:"second",detail:"A number from 0 to 32767 representing the second. Any value greater than 59 will be converted to hours, minutes, and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 or 12:33:20 AM."}}},TIMEVALUE:{description:"Converts a time in the form of text to a serial number.",abstract:"Converts a time in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645"}],functionParameter:{timeText:{name:"time_text",detail:'A text string that represents a time in any one of the Microsoft Excel time formats; for example, "6:45 PM" and "18:45" text strings within quotation marks that represent time.'}}},TO_DATE:{description:"Converts a provided number to a date.",abstract:"Converts a provided number to a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The argument or reference to a cell to be converted to a date."}}},TODAY:{description:"Returns the serial number of today's date",abstract:"Returns the serial number of today's date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9"}],functionParameter:{}},WEEKDAY:{description:"Converts a serial number to a day of the week",abstract:"Converts a serial number to a day of the week",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A sequential number that represents the date of the day you are trying to find."},returnType:{name:"return_type",detail:"A number that determines the type of return value."}}},WEEKNUM:{description:"Converts a serial number to a number representing where the week falls numerically with a year",abstract:"Converts a serial number to a number representing where the week falls numerically with a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A date within the week."},returnType:{name:"return_type",detail:"A number that determines on which day the week begins. The default is 1."}}},WORKDAY:{description:"Returns the serial number of the date before or after a specified number of workdays",abstract:"Returns the serial number of the date before or after a specified number of workdays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},WORKDAY_INTL:{description:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",abstract:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},YEAR:{description:"Returns the year corresponding to a date. The year is returned as an integer in the range 1900-9999.",abstract:"Converts a serial number to a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the year you want to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."}}},YEARFRAC:{description:"Returns the year fraction representing the number of whole days between start_date and end_date",abstract:"Returns the year fraction representing the number of whole days between start_date and end_date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{ABS:{description:"Returns the absolute value of a number. The absolute value of a number is the number without its sign.",abstract:"Returns the absolute value of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"number",detail:"The real number of which you want the absolute value."}}},ACOS:{description:"Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is number. The returned angle is given in radians in the range 0 (zero) to pi.",abstract:"Returns the arccosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"number",detail:"The cosine of the angle you want and must be from -1 to 1."}}},ACOSH:{description:"Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is number, so ACOSH(COSH(number)) equals number.",abstract:"Returns the inverse hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"number",detail:"Any real number equal to or greater than 1."}}},ACOT:{description:"Returns the principal value of the arccotangent, or inverse cotangent, of a number.",abstract:"Returns the arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"number",detail:"Number is the cotangent of the angle you want. This must be a real number."}}},ACOTH:{description:"Returns the hyperbolic arccotangent of a number",abstract:"Returns the hyperbolic arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"number",detail:"The absolute value of Number must be greater than 1."}}},AGGREGATE:{description:"Returns an aggregate in a list or database",abstract:"Returns an aggregate in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ARABIC:{description:"Converts a Roman number to Arabic, as a number",abstract:"Converts a Roman number to Arabic, as a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"text",detail:'A string enclosed in quotation marks, an empty string (""), or a reference to a cell containing text.'}}},ASIN:{description:"Returns the arcsine of a number.",abstract:"Returns the arcsine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"number",detail:"The sine of the angle you want and must be from -1 to 1."}}},ASINH:{description:"Returns the inverse hyperbolic sine of a number.",abstract:"Returns the inverse hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},ATAN:{description:"Returns the arctangent of a number.",abstract:"Returns the arctangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"number",detail:"The tangent of the angle you want."}}},ATAN2:{description:"Returns the arctangent from x- and y-coordinates.",abstract:"Returns the arctangent from x- and y-coordinates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"x_num",detail:"The x-coordinate of the point."},yNum:{name:"y_num",detail:"The y-coordinate of the point."}}},ATANH:{description:"Returns the inverse hyperbolic tangent of a number.",abstract:"Returns the inverse hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"number",detail:"Any real number between 1 and -1."}}},BASE:{description:"Converts a number into a text representation with the given radix (base)",abstract:"Converts a number into a text representation with the given radix (base)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"number",detail:"The number that you want to convert. Must be an integer greater than or equal to 0 and less than 2^53."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."},minLength:{name:"min_length",detail:"The minimum length of the returned string. Must be an integer greater than or equal to 0."}}},CEILING:{description:"Rounds a number to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},CEILING_MATH:{description:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},CEILING_PRECISE:{description:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",abstract:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},COMBIN:{description:"Returns the number of combinations for a given number of objects",abstract:"Returns the number of combinations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COMBINA:{description:"Returns the number of combinations with repetitions for a given number of items",abstract:"Returns the number of combinations with repetitions for a given number of items",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COS:{description:"Returns the cosine of a number.",abstract:"Returns the cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosine."}}},COSH:{description:"Returns the hyperbolic cosine of a number",abstract:"Returns the hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cosine."}}},COT:{description:"Returns the cotangent of an angle",abstract:"Returns the cotangent of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cotangent."}}},COTH:{description:"Returns the hyperbolic cotangent of a number",abstract:"Returns the hyperbolic cotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cotangent."}}},CSC:{description:"Returns the cosecant of an angle",abstract:"Returns the cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosecant."}}},CSCH:{description:"Returns the hyperbolic cosecant of an angle",abstract:"Returns the hyperbolic cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the hyperbolic cosecant."}}},DECIMAL:{description:"Converts a text representation of a number in a given base into a decimal number",abstract:"Converts a text representation of a number in a given base into a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"text",detail:"The string length of Text must be less than or equal to 255 characters."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."}}},DEGREES:{description:"Converts radians to degrees",abstract:"Converts radians to degrees",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"angle",detail:"The angle in radians that you want to convert."}}},EVEN:{description:"Rounds a number up to the nearest even integer",abstract:"Rounds a number up to the nearest even integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},EXP:{description:"Returns e raised to the power of a given number",abstract:"Returns e raised to the power of a given number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"number",detail:"The exponent applied to the base e."}}},FACT:{description:"Returns the factorial of a number",abstract:"Returns the factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the factorial. If number is not an integer, it is truncated."}}},FACTDOUBLE:{description:"Returns the double factorial of a number",abstract:"Returns the double factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the double factorial. If number is not an integer, it is truncated."}}},FLOOR:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},FLOOR_MATH:{description:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},FLOOR_PRECISE:{description:"Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",abstract:"Rounds a number down to the nearest integer or to the nearest multiple of significance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},GCD:{description:"Returns the greatest common divisor",abstract:"Returns the greatest common divisor",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the greatest common divisor, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose greatest common divisor is to be found. Up to 255 numbers can be specified in this way."}}},INT:{description:"Rounds a number down to the nearest integer",abstract:"Rounds a number down to the nearest integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"number",detail:"The real number you want to round down to an integer."}}},ISO_CEILING:{description:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",abstract:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LCM:{description:"Returns the least common multiple",abstract:"Returns the least common multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the least common multiple, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose least common multiple is to be found. Up to 255 numbers can be specified in this way."}}},LET:{description:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",abstract:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LN:{description:"Returns the natural logarithm of a number",abstract:"Returns the natural logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the natural logarithm."}}},LOG:{description:"Returns the logarithm of a number to a specified base",abstract:"Returns the logarithm of a number to a specified base",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the logarithm."},base:{name:"base",detail:"The base of the logarithm. If base is omitted, it is assumed to be 10."}}},LOG10:{description:"Returns the base-10 logarithm of a number",abstract:"Returns the base-10 logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the base-10 logarithm."}}},MDETERM:{description:"Returns the matrix determinant of an array",abstract:"Returns the matrix determinant of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MINVERSE:{description:"Returns the matrix inverse of an array",abstract:"Returns the matrix inverse of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MMULT:{description:"Returns the matrix product of two arrays",abstract:"Returns the matrix product of two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"array1",detail:"The arrays you want to multiply."},array2:{name:"array2",detail:"The arrays you want to multiply."}}},MOD:{description:"Returns the remainder after number is divided by divisor. The result has the same sign as divisor.",abstract:"Returns the remainder from division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"number",detail:"The number for which you want to find the remainder."},divisor:{name:"divisor",detail:"The number by which you want to divide number"}}},MROUND:{description:"Returns a number rounded to the desired multiple",abstract:"Returns a number rounded to the desired multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"number",detail:"The value to round."},multiple:{name:"multiple",detail:"The multiple to which you want to round number."}}},MULTINOMIAL:{description:"Returns the multinomial of a set of numbers",abstract:"Returns the multinomial of a set of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"number1",detail:"The first value or range to use in the calculation."},number2:{name:"number2",detail:"Additional values ​​or ranges to use in calculations."}}},MUNIT:{description:"Returns the unit matrix or the specified dimension",abstract:"Returns the unit matrix or the specified dimension",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"dimension",detail:"Dimension is an integer specifying the dimension of the unit matrix that you want to return. It returns an array. The dimension has to be greater than zero."}}},ODD:{description:"Rounds a number up to the nearest odd integer",abstract:"Rounds a number up to the nearest odd integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},PI:{description:"Returns the value of pi",abstract:"Returns the value of pi",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"Returns the result of a number raised to a power.",abstract:"Returns the result of a number raised to a power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"number",detail:"The base number. It can be any real number."},power:{name:"power",detail:"The exponent to which the base number is raised."}}},PRODUCT:{description:"Multiplies all the numbers given as arguments and returns the product.",abstract:"Multiplies its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"number1",detail:"The first number or range that you want to multiply."},number2:{name:"number2",detail:"Additional numbers or ranges that you want to multiply, up to a maximum of 255 arguments."}}},QUOTIENT:{description:"Returns the integer portion of a division",abstract:"Returns the integer portion of a division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"numerator",detail:"The dividend."},denominator:{name:"denominator",detail:"The divisor."}}},RADIANS:{description:"Converts degrees to radians",abstract:"Converts degrees to radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"angle",detail:"An angle in degrees that you want to convert."}}},RAND:{description:"Returns a random number between 0 and 1",abstract:"Returns a random number between 0 and 1",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",abstract:"Returns an array of random numbers between 0 and 1.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to be returned"},columns:{name:"columns",detail:"The number of columns to be returned"},min:{name:"min",detail:"The minimum number you would like returned"},max:{name:"max",detail:"The maximum number you would like returned"},wholeNumber:{name:"whole_number",detail:"Return a whole number or a decimal value"}}},RANDBETWEEN:{description:"Returns a random number between the numbers you specify",abstract:"Returns a random number between the numbers you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"bottom",detail:"The smallest integer RANDBETWEEN will return."},top:{name:"top",detail:"The largest integer RANDBETWEEN will return."}}},ROMAN:{description:"Converts an Arabic numeral to Roman, as text",abstract:"Converts an Arabic numeral to Roman, as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"number",detail:"The Arabic numeral you want converted."},form:{name:"form",detail:"A number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases."}}},ROUND:{description:"Rounds a number to a specified number of digits",abstract:"Rounds a number to a specified number of digits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDBANK:{description:"Rounds a number in banker's rounding",abstract:"Rounds a number in banker's rounding",links:[{title:"Instruction",url:""}],functionParameter:{number:{name:"number",detail:"The number that you want to round in banker's rounding."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round in banker's rounding."}}},ROUNDDOWN:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDUP:{description:"Rounds a number up, away from zero",abstract:"Rounds a number up, away from zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},SEC:{description:"Returns the secant of an angle",abstract:"Returns the secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the secant."}}},SECH:{description:"Returns the hyperbolic secant of an angle",abstract:"Returns the hyperbolic secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the hyperbolic secant."}}},SERIESSUM:{description:"Returns the sum of a power series based on the formula",abstract:"Returns the sum of a power series based on the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"The input value to the power series."},n:{name:"n",detail:"The initial power to which you want to raise x."},m:{name:"m",detail:"The step by which to increase n for each term in the series."},coefficients:{name:"coefficients",detail:"A set of coefficients by which each successive power of x is multiplied."}}},SEQUENCE:{description:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",abstract:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to return."},columns:{name:"columns",detail:"The number of columns to return."},start:{name:"start",detail:"The first number in the sequence."},step:{name:"step",detail:"The amount to increment each subsequent value in the array."}}},SIGN:{description:"Returns the sign of a number",abstract:"Returns the sign of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SIN:{description:"Returns the sine of the given angle",abstract:"Returns the sine of the given angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the sine."}}},SINH:{description:"Returns the hyperbolic sine of a number",abstract:"Returns the hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SQRT:{description:"Returns a positive square root",abstract:"Returns a positive square root",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"number",detail:"The number for which you want the square root."}}},SQRTPI:{description:"Returns the square root of (number * pi)",abstract:"Returns the square root of (number * pi)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"number",detail:"The number by which pi is multiplied."}}},SUBTOTAL:{description:"Returns a subtotal in a list or database.",abstract:"Returns a subtotal in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"function_num",detail:"The number 1-11 or 101-111 that specifies the function to use for the subtotal. 1-11 includes manually-hidden rows, while 101-111 excludes them; filtered-out cells are always excluded."},ref1:{name:"ref1",detail:"The first named range or reference for which you want the subtotal."},ref2:{name:"ref2",detail:"Named ranges or references 2 to 254 for which you want the subtotal."}}},SUM:{description:"You can add individual values, cell references or ranges or a mix of all three.",abstract:"Adds its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"Number 1",detail:"The first number you want to add. The number can be like 4, a cell reference like B6, or a cell range like B2:B8."},number2:{name:"Number 2",detail:"This is the second number you want to add. You can specify up to 255 numbers in this way."}}},SUMIF:{description:"Sum the values in a range that meet criteria that you specify.",abstract:"Adds the cells specified by a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"range",detail:"The range of cells that you want evaluated by criteria."},criteria:{name:"criteria",detail:"The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. Wildcard characters can be included - a question mark (?) to match any single character, an asterisk (*) to match any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character."},sumRange:{name:"sum_range",detail:"The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied)."}}},SUMIFS:{description:"Adds all of its arguments that meet multiple criteria.",abstract:"Adds all of its arguments that meet multiple criteria.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"sum_range",detail:"The range of cells to sum."},criteriaRange1:{name:"criteria_range1 ",detail:"The range that is tested using criteria1. criteria_range1 and criteria1 set up a search pair whereby a range is searched for specific criteria. Once items in the range are found, their corresponding values in sum_range are added."},criteria1:{name:"criteria1",detail:'The criteria that defines which cells in criteria_range1 will be added. For example, criteria can be entered as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 range pairs."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria pairs."}}},SUMPRODUCT:{description:"Returns the sum of the products of corresponding array components",abstract:"Returns the sum of the products of corresponding array components",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"array",detail:"The first array argument whose components you want to multiply and then add."},array2:{name:"array",detail:"Array arguments 2 to 255 whose components you want to multiply and then add."}}},SUMSQ:{description:"Returns the sum of the squares of the arguments",abstract:"Returns the sum of the squares of the arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"number1",detail:"To square and find the first number, you can also use a single array or a reference to an array instead of comma-separated parameters."},number2:{name:"number2",detail:"The second number to be squared and summed. Up to 255 numbers can be specified in this way."}}},SUMX2MY2:{description:"Returns the sum of the difference of squares of corresponding values in two arrays",abstract:"Returns the sum of the difference of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMX2PY2:{description:"Returns the sum of the sum of squares of corresponding values in two arrays",abstract:"Returns the sum of the sum of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMXMY2:{description:"Returns the sum of squares of differences of corresponding values in two arrays",abstract:"Returns the sum of squares of differences of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},TAN:{description:"Returns the tangent of a number.",abstract:"Returns the tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the tangent."}}},TANH:{description:"Returns the hyperbolic tangent of a number.",abstract:"Returns the hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},TRUNC:{description:"Truncates a number to an integer",abstract:"Truncates a number to an integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"number",detail:"The number you want to truncate."},numDigits:{name:"num_digits",detail:"A number specifying the precision of the truncation. The default value for num_digits is 0 (zero)."}}}},...{AVEDEV:{description:"Returns the average of the absolute deviations of data points from their mean.",abstract:"Returns the average of the absolute deviations of data points from their mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE:{description:"Returns the average (arithmetic mean) of the arguments.",abstract:"Returns the average of its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE_WEIGHTED:{description:"Finds the weighted average of a set of values, given the values and the corresponding weights.",abstract:"Finds the weighted average of a set of values, given the values and the corresponding weights.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"values",detail:"要计算平均数的值。"},weights:{name:"weights",detail:"要应用的相应权重列表。"},additionalValues:{name:"additional_values",detail:"要计算平均数的其他值。"},additionalWeights:{name:"additional_weights",detail:"要应用的其他权重。"}}},AVERAGEA:{description:"Returns the average of its arguments, including numbers, text, and logical values.",abstract:"Returns the average of its arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range for which you want the average."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGEIF:{description:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria.",abstract:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteria:{name:"criteria",detail:'The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.'},averageRange:{name:"average_range",detail:"The actual set of cells to average. If omitted, range is used."}}},AVERAGEIFS:{description:"Returns the average (arithmetic mean) of all cells that meet multiple criteria.",abstract:"Returns the average (arithmetic mean) of all cells that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"average_range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:'Used to define the cells for which the average will be calculated. For example, the criteria can be expressed as 32, "32", ">32", "apple", or B4'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},BETA_DIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETA_INV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOM_DIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},BINOM_DIST_RANGE:{description:"Returns the probability of a trial result using a binomial distribution",abstract:"Returns the probability of a trial result using a binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},numberS:{name:"number_s",detail:"The number of successes in trials."},numberS2:{name:"number_s2",detail:"If provided, returns the probability that the number of successful trials will fall between number_s and number_s2."}}},BINOM_INV:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},CHISQ_DIST:{description:"Returns the left-tailed probability of the chi-squared distribution.",abstract:"Returns the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHISQ_DIST_RT:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV:{description:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV_RT:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_TEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE_NORM:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CONFIDENCE_T:{description:"Returns the confidence interval for a population mean, using a Student's t distribution",abstract:"Returns the confidence interval for a population mean, using a Student's t distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CORREL:{description:"Returns the correlation coefficient between two data sets",abstract:"Returns the correlation coefficient between two data sets",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COUNT:{description:"Counts the number of cells that contain numbers, and counts numbers within the list of arguments.",abstract:"Counts how many numbers are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"value 1",detail:"The first item, cell reference, or range within which you want to count numbers."},value2:{name:"value 2",detail:"Up to 255 additional items, cell references, or ranges within which you want to count numbers."}}},COUNTA:{description:`Counts cells containing any type of information, including error values and empty text ("") + If you do not need to count logical values, text, or error values`,abstract:"Counts how many values are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"value1",detail:"Required. The first argument representing the values that you want to count."},number2:{name:"value2",detail:"Optional. Additional arguments representing the values that you want to count, up to a maximum of 255 arguments."}}},COUNTBLANK:{description:"Counts the number of blank cells within a range.",abstract:"Counts the number of blank cells within a range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"range",detail:"The range from which you want to count the blank cells."}}},COUNTIF:{description:"Counts the number of cells within a range that meet the given criteria.",abstract:"Counts the number of cells within a range that meet the given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"range",detail:"The group of cells you want to count. Range can contain numbers, arrays, a named range, or references that contain numbers. Blank and text values are ignored."},criteria:{name:"criteria",detail:`A number, expression, cell reference, or text string that determines which cells will be counted. +For example, you can use a number like 32, a comparison like ">32", a cell like B4, or a word like "apples". +COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple criteria.`}}},COUNTIFS:{description:"Counts the number of cells within a range that meet multiple criteria.",abstract:"Counts the number of cells within a range that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"criteria_range1",detail:"The first range in which to evaluate the associated criteria."},criteria1:{name:"criteria1",detail:'The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},COVARIANCE_P:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COVARIANCE_S:{description:"Returns the sample covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns the sample covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},DEVSQ:{description:"Returns the sum of squares of deviations",abstract:"Returns the sum of squares of deviations",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"number1",detail:"The fist argument for which you want to calculate the sum of squared deviations."},number2:{name:"number2",detail:"The 2 to 255 arguments for which you want to calculate the sum of squared deviations."}}},EXPON_DIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST:{description:"Returns the F probability distribution",abstract:"Returns the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST_RT:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV:{description:"Returns the inverse of the F probability distribution",abstract:"Returns the inverse of the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV_RT:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_TEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},FISHER:{description:"Returns the Fisher transformation",abstract:"Returns the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"x",detail:"A numeric value for which you want the transformation."}}},FISHERINV:{description:"Returns the inverse of the Fisher transformation",abstract:"Returns the inverse of the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"y",detail:"The value for which you want to perform the inverse of the transformation."}}},FORECAST:{description:"Returns a value along a linear trend",abstract:"Returns a value along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FORECAST_ETS:{description:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",abstract:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_CONFINT:{description:"Returns a confidence interval for the forecast value at the specified target date",abstract:"Returns a confidence interval for the forecast value at the specified target date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_SEASONALITY:{description:"Returns the length of the repetitive pattern Excel detects for the specified time series",abstract:"Returns the length of the repetitive pattern Excel detects for the specified time series",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_STAT:{description:"Returns a statistical value as a result of time series forecasting",abstract:"Returns a statistical value as a result of time series forecasting",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_LINEAR:{description:"Returns a future value based on existing values",abstract:"Returns a future value based on existing values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FREQUENCY:{description:"Returns a frequency distribution as a vertical array",abstract:"Returns a frequency distribution as a vertical array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"data_array",detail:"An array of or reference to a set of values for which you want to count frequencies. If data_array contains no values, FREQUENCY returns an array of zeros."},binsArray:{name:"bins_array",detail:"An array of or reference to intervals into which you want to group the values in data_array. If bins_array contains no values, FREQUENCY returns the number of elements in data_array."}}},GAMMA:{description:"Returns the Gamma function value",abstract:"Returns the Gamma function value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"number",detail:"Input value to the gamma function."}}},GAMMA_DIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMA_INV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},GAMMALN:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN."}}},GAMMALN_PRECISE:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN.PRECISE."}}},GAUSS:{description:"Returns 0.5 less than the standard normal cumulative distribution",abstract:"Returns 0.5 less than the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},GEOMEAN:{description:"Returns the geometric mean",abstract:"Returns the geometric mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the geometric mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the geometric mean, up to a maximum of 255."}}},GROWTH:{description:"Returns values along an exponential trend",abstract:"Returns values along an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},newXs:{name:"new_x's",detail:"Are new x-values for which you want GROWTH to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."}}},HARMEAN:{description:"Returns the harmonic mean",abstract:"Returns the harmonic mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the harmonic mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the harmonic mean, up to a maximum of 255."}}},HYPGEOM_DIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},INTERCEPT:{description:"Returns the intercept of the linear regression line",abstract:"Returns the intercept of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},KURT:{description:"Returns the kurtosis of a data set",abstract:"Returns the kurtosis of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the kurtosis."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the kurtosis, up to a maximum of 255."}}},LARGE:{description:"Returns the k-th largest value in a data set",abstract:"Returns the k-th largest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th largest value."},k:{name:"k",detail:"The position (from the largest) in the array or cell range of data to return."}}},LINEST:{description:"Returns the parameters of a linear trend",abstract:"Returns the parameters of a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGEST:{description:"Returns the parameters of an exponential trend",abstract:"Returns the parameters of an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGNORM_DIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGNORM_INV:{description:"Returns the inverse of the lognormal cumulative distribution",abstract:"Returns the inverse of the lognormal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},MARGINOFERROR:{description:"Calculates the margin of error from a range of values and a confidence level.",abstract:"Calculates the margin of error from a range of values and a confidence level.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"range",detail:"The range of values used to calculate the margin of error."},confidence:{name:"confidence",detail:"The desired confidence level between (0, 1)."}}},MAX:{description:"Returns the largest value in a set of values.",abstract:"Returns the maximum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the maximum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the maximum value from, up to a maximum of 255."}}},MAXA:{description:"Returns the maximum value in a list of arguments, including numbers, text, and logical values.",abstract:"Returns the maximum value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"value1",detail:"The first number argument for which you want to find the largest value."},value2:{name:"value2",detail:"Number arguments 2 to 255 for which you want to find the largest value."}}},MAXIFS:{description:"Returns the maximum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the maximum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"sum_range",detail:"The range of cells to max."},criteriaRange1:{name:"criteria_range1 ",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as maximum. "},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 ranges."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MEDIAN:{description:"Returns the median of the given numbers",abstract:"Returns the median of the given numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the given numbers."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the given numbers, up to a maximum of 255."}}},MIN:{description:"Returns the smallest number in a set of values.",abstract:"Returns the minimum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the minimum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINA:{description:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",abstract:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range to calculate the minimum value from."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINIFS:{description:"Returns the minimum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the minimum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"min_range",detail:"The actual range of cells in which the minimum value will be determined."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as minimum. The same set of criteria works for the MAXIFS, SUMIFS and AVERAGEIFS functions."},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MODE_MULT:{description:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",abstract:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},MODE_SNGL:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOM_DIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_DIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_INV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORM_S_DIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_S_INV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PEARSON:{description:"Returns the Pearson product moment correlation coefficient",abstract:"Returns the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},PERCENTILE_EXC:{description:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",abstract:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Excludes 0 and 1)."}}},PERCENTILE_INC:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK_EXC:{description:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.EXC uses three digits (0.xxx)."}}},PERCENTRANK_INC:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},PERMUT:{description:"Returns the number of permutations for a given number of objects",abstract:"Returns the number of permutations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PERMUTATIONA:{description:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",abstract:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PHI:{description:"Returns the value of the density function for a standard normal distribution",abstract:"Returns the value of the density function for a standard normal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X is the number for which you want the density of the standard normal distribution."}}},POISSON_DIST:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},PROB:{description:"Returns the probability that values in a range are between two limits",abstract:"Returns the probability that values in a range are between two limits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"x_range",detail:"The range of numeric values of x with which there are associated probabilities."},probRange:{name:"prob_range",detail:"A set of probabilities associated with values in x_range."},lowerLimit:{name:"lower_limit",detail:"The lower bound on the value for which you want a probability."},upperLimit:{name:"upper_limit",detail:"The upper bound on the value for which you want a probability."}}},QUARTILE_EXC:{description:"Returns the quartile of a data set (Excludes 0 and 1)",abstract:"Returns the quartile of a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},QUARTILE_INC:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK_AVG:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RANK_EQ:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RSQ:{description:"Returns the square of the Pearson product moment correlation coefficient",abstract:"Returns the square of the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},SKEW:{description:"Returns the skewness of a distribution",abstract:"Returns the skewness of a distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SKEW_P:{description:"Returns the skewness of a distribution based on a population",abstract:"Returns the skewness of a distribution based on a population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SLOPE:{description:"Returns the slope of the linear regression line",abstract:"Returns the slope of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},SMALL:{description:"Returns the k-th smallest value in a data set",abstract:"Returns the k-th smallest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th smallest value."},k:{name:"k",detail:"The position (from the smallest) in the array or cell range of data to return."}}},STANDARDIZE:{description:"Returns a normalized value",abstract:"Returns a normalized value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"The value you want to normalize."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},STDEV_P:{description:"Calculates standard deviation based on the entire population given as arguments (ignores logical values and text).",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEV_S:{description:"Estimates standard deviation based on a sample (ignores logical values and text in the sample).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVA:{description:"Estimates standard deviation based on a sample, including numbers, text, and logical values.",abstract:"Estimates standard deviation based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVPA:{description:"Calculates standard deviation based on the entire population given as arguments, including text and logical values.",abstract:"Calculates standard deviation based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STEYX:{description:"Returns the standard error of the predicted y-value for each x in the regression",abstract:"Returns the standard error of the predicted y-value for each x in the regression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},T_DIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},T_DIST_2T:{description:"Returns the probability for the Student t-distribution (two-tailed)",abstract:"Returns the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_DIST_RT:{description:"Returns the probability for the Student t-distribution (right-tailed)",abstract:"Returns the probability for the Student t-distribution (right-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV:{description:"Returns the inverse of the probability for the Student t-distribution",abstract:"Returns the inverse of the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV_2T:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_TEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, T.TEST uses the one-tailed distribution. If tails = 2, T.TEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},TREND:{description:"Returns values along a linear trend",abstract:"Returns values along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},newXs:{name:"new_x's",detail:"Are new x-values for which you want TREND to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."}}},TRIMMEAN:{description:"Returns the mean of the interior of a data set",abstract:"Returns the mean of the interior of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"array",detail:"The array or range of values to trim and average."},percent:{name:"percent",detail:"The fractional number of data points to exclude from the calculation."}}},VAR_P:{description:"Calculates variance based on the entire population (ignores logical values and text in the population).",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population."}}},VAR_S:{description:"Estimates variance based on a sample (ignores logical values and text in the sample).",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population."}}},VARA:{description:"Estimates variance based on a sample, including numbers, text, and logical values",abstract:"Estimates variance based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"value1",detail:"The value number argument corresponding to a sample of a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population."}}},VARPA:{description:"Calculates variance based on the entire population, including numbers, text, and logical values",abstract:"Calculates variance based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population."}}},WEIBULL_DIST:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},Z_TEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ADDRESS:{description:`Obtain the address of a cell in a worksheet, given specified row and column numbers. For example, ADDRESS(2,3) returns $C$2. As another example, ADDRESS(77,300) returns $KN$77. You can use other functions, such as the ROW and COLUMN functions, to provide the row and column number arguments for the ADDRESS function. + + `,abstract:"Returns a reference as text to a single cell in a worksheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"row number",detail:"A numeric value that specifies the row number to use in the cell reference."},column_num:{name:"column number",detail:"A numeric value that specifies the column number to use in the cell reference."},abs_num:{name:"type of reference",detail:"A numeric value that specifies the type of reference to return."},a1:{name:"style of reference",detail:"A logical value that specifies the A1 or R1C1 reference style. In A1 style, columns are labeled alphabetically, and rows are labeled numerically. In R1C1 reference style, both columns and rows are labeled numerically. If the A1 argument is TRUE or omitted, the ADDRESS function returns an A1-style reference; if FALSE, the ADDRESS function returns an R1C1-style reference."},sheet_text:{name:"worksheet name",detail:'A text value that specifies the name of the worksheet to be used as the external reference. For example, the formula =ADDRESS(1,1,,,"Sheet2") returns Sheet2!$A$1. If the sheet_text argument is omitted, no sheet name is used, and the address returned by the function refers to a cell on the current sheet.'}}},AREAS:{description:"Returns the number of areas in a reference",abstract:"Returns the number of areas in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells and can refer to multiple areas."}}},CHOOSE:{description:"Chooses a value from a list of values.",abstract:"Chooses a value from a list of values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"index_num",detail:`Specifies which value argument is selected. Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number between 1 and 254. +If index_num is 1, CHOOSE returns value1; if it is 2, CHOOSE returns value2; and so on. +If index_num is less than 1 or greater than the number of the last value in the list, CHOOSE returns the #VALUE! error value. +If index_num is a fraction, it is truncated to the lowest integer before being used.`},value1:{name:"value1",detail:"CHOOSE selects a value or an action to perform based on index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or text."},value2:{name:"value2",detail:"1 to 254 value arguments."}}},CHOOSECOLS:{description:"Returns the specified columns from an array",abstract:"Returns the specified columns from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"array",detail:"The array containing the columns to be returned in the new array."},colNum1:{name:"col_num1",detail:"The first column to be returned."},colNum2:{name:"col_num2",detail:"Additional columns to be returned."}}},CHOOSEROWS:{description:"Returns the specified rows from an array",abstract:"Returns the specified rows from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"array",detail:"The array containing the rows to be returned in the new array."},rowNum1:{name:"row_num1",detail:"The first row number to be returned."},rowNum2:{name:"row_num2",detail:"Additional row numbers to be returned."}}},COLUMN:{description:"Returns the column number of the given cell reference.",abstract:"Returns the column number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want to return the column number."}}},COLUMNS:{description:"Returns the number of columns in an array or reference.",abstract:"Returns the number of columns in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"array",detail:"An array or array formula, or a reference to a range of cells for which you want the number of columns."}}},DROP:{description:"Excludes a specified number of rows or columns from the start or end of an array",abstract:"Excludes a specified number of rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"array",detail:"The array from which to drop rows or columns."},rows:{name:"rows",detail:"The number of rows to drop. A negative value drops from the end of the array."},columns:{name:"columns",detail:"The number of columns to exclude. A negative value drops from the end of the array."}}},EXPAND:{description:"Expands or pads an array to specified row and column dimensions",abstract:"Expands or pads an array to specified row and column dimensions",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"array",detail:"The array to expand."},rows:{name:"rows",detail:"The number of rows in the expanded array. If missing, rows will not be expanded."},columns:{name:"columns",detail:"The number of columns in the expanded array. If missing, columns will not be expanded."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},FILTER:{description:"Filters a range of data based on criteria you define",abstract:"Filters a range of data based on criteria you define",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"array",detail:"The range or array to filter."},include:{name:"include",detail:"An array of Boolean values ​​where TRUE indicates that a row or column is to be retained."},ifEmpty:{name:"if_empty",detail:"If no items are reserved, return."}}},FORMULATEXT:{description:"Returns the formula at the given reference as text",abstract:"Returns the formula at the given reference as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells."}}},GETPIVOTDATA:{description:"Returns data stored in a PivotTable report",abstract:"Returns data stored in a PivotTable report",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},HLOOKUP:{description:"Looks in the top row of an array and returns the value of the indicated cell",abstract:"Looks in the top row of an array and returns the value of the indicated cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to be found in the first row of the table. Lookup_value can be a value, a reference, or a text string."},tableArray:{name:"table_array",detail:"A table of information in which data is looked up. Use a reference to a range or a range name."},rowIndexNum:{name:"row_index_num",detail:"The row number in table_array from which the matching value will be returned. A row_index_num of 1 returns the first row value in table_array, a row_index_num of 2 returns the second row value in table_array, and so on. "},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match."}}},HSTACK:{description:"Appends arrays horizontally and in sequence to return a larger array",abstract:"Appends arrays horizontally and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},HYPERLINK:{description:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",abstract:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hyperlink-function-333c7ce6-c5ae-4164-9c47-7de9b76f577f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},IMAGE:{description:"Returns an image from a given source",abstract:"Returns an image from a given source",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},INDEX:{description:"Returns the reference of the cell at the intersection of a particular row and column. If the reference is made up of non-adjacent selections, you can pick the selection to look in.",abstract:"Uses an index to choose a value from a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"reference",detail:"A reference to one or more cell ranges."},rowNum:{name:"row_num",detail:"The number of the row in reference from which to return a reference."},columnNum:{name:"column_num",detail:"The number of the column in reference from which to return a reference."},areaNum:{name:"area_num",detail:"Selects a range in reference from which to return the intersection of row_num and column_num."}}},INDIRECT:{description:"Returns the reference specified by a text string. References are immediately evaluated to display their contents.",abstract:"Returns a reference indicated by a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"ref_text",detail:"A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. "},a1:{name:"a1",detail:"A logical value that specifies what type of reference is contained in the cell ref_text."}}},LOOKUP:{description:"When you need to look in a single row or column and find a value from the same position in a second row or column",abstract:"Looks up values in a vector or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"A value that LOOKUP searches for in the first vector. Lookup_value can be a number, text, a logical value, or a name or reference that refers to a value."},lookupVectorOrArray:{name:"lookup_vectorOrArray",detail:"A range that contains only one row or one column"},resultVector:{name:"result_vector",detail:"A range that contains only one row or column. The result_vector argument must be the same size as lookup_vector."}}},MATCH:{description:"The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.",abstract:"Looks up values in a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value that you want to match in lookup_array."},lookupArray:{name:"lookup_array",detail:"The range of cells being searched."},matchType:{name:"match_type",detail:"The number -1, 0, or 1."}}},OFFSET:{description:"Returns a reference offset from a given reference",abstract:"Returns a reference offset from a given reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"reference",detail:"The reference from which you want to base the offset."},rows:{name:"rows",detail:"The number of rows, up or down, that you want the upper-left cell to refer to."},cols:{name:"columns",detail:"The number of columns, to the left or right, that you want the upper-left cell of the result to refer to."},height:{name:"height",detail:"The height, in number of rows, that you want the returned reference to be. Height must be a positive number."},width:{name:"width",detail:"The width, in number of columns, that you want the returned reference to be. Width must be a positive number."}}},ROW:{description:"Returns the row number of a reference",abstract:"Returns the row number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want the row number."}}},ROWS:{description:"Returns the number of rows in an array or reference.",abstract:"Returns the number of rows in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"array",detail:"An array, an array formula, or a reference to a range of cells for which you want the number of rows."}}},RTD:{description:"Retrieves real-time data from a program that supports COM automation",abstract:"Retrieves real-time data from a program that supports COM automation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},SORT:{description:"Sorts the contents of a range or array",abstract:"Sorts the contents of a range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},sortIndex:{name:"sort_index",detail:"A number indicating the sort order (by row or by column)."},sortOrder:{name:"sort_order",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byCol:{name:"by_col",detail:"Logical value indicating the desired sort direction; FALSE sorts by rows (default), TRUE sorts by columns."}}},SORTBY:{description:"Sorts the contents of a range or array based on the values in a corresponding range or array",abstract:"Sorts the contents of a range or array based on the values in a corresponding range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},byArray1:{name:"by_array1",detail:"The range or array to sort based on."},sortOrder1:{name:"sort_order1",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byArray2:{name:"by_array2",detail:"The range or array to sort based on."},sortOrder2:{name:"sort_order2",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."}}},TAKE:{description:"Returns a specified number of contiguous rows or columns from the start or end of an array",abstract:"Returns a specified number of contiguous rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"array",detail:"The array from which to take rows or columns."},rows:{name:"rows",detail:"The number of rows to take. A negative value takes from the end of the array."},columns:{name:"columns",detail:"The number of columns to take. A negative value takes from the end of the array."}}},TOCOL:{description:"Returns the array in a single column",abstract:"Returns the array in a single column",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a column."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TOROW:{description:"Returns the array in a single row",abstract:"Returns the array in a single row",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a row."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TRANSPOSE:{description:"Returns the transpose of an array",abstract:"Returns the transpose of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"array",detail:"A range of cells or an array in a worksheet."}}},UNIQUE:{description:"Returns a list of unique values in a list or range",abstract:"Returns a list of unique values in a list or range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"array",detail:"The range or array from which unique rows or columns are returned."},byCol:{name:"by_col",detail:"Is a logical value: compares rows to each other and returns unique values ​​= FALSE, or is omitted; compares columns to each other and returns unique values ​​= TRUE."},exactlyOnce:{name:"exactly_once",detail:"Is a logical value: returns rows or columns from the array that appear only once = TRUE; returns all distinct rows or columns from the array = FALSE, or has been omitted."}}},VLOOKUP:{description:"Use VLOOKUP when you need to find things in a table or a range by row. For example, look up a price of an automotive part by the part number, or find an employee name based on their employee ID.",abstract:"Looks in the first column of an array and moves across the row to return the value of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value you want to look up. The value you want to look up must be in the first column of the range of cells you specify in the table_array argument."},tableArray:{name:"table_array",detail:"The range of cells in which the VLOOKUP will search for the lookup_value and the return value. You can use a named range or a table, and you can use names in the argument instead of cell references. "},colIndexNum:{name:"col_index_num",detail:"The column number (starting with 1 for the left-most column of table_array) that contains the return value."},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want VLOOKUP to find an approximate or an exact match: Approximate match - 1/TRUE, Exact match - 0/FALSE"}}},VSTACK:{description:"Appends arrays vertically and in sequence to return a larger array",abstract:"Appends arrays vertically and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},WRAPCOLS:{description:"Wraps the provided row or column of values by columns after a specified number of elements",abstract:"Wraps the provided row or column of values by columns after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each column."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},WRAPROWS:{description:"Wraps the provided row or column of values by rows after a specified number of elements",abstract:"Wraps the provided row or column of values by rows after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each row."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},XLOOKUP:{description:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",abstract:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to search for, If omitted, XLOOKUP returns blank cells it finds in lookup_array. "},lookupArray:{name:"lookup_array",detail:"The array or range to search"},returnArray:{name:"return_array",detail:"The array or range to return"},ifNotFound:{name:"if_not_found",detail:"Where a valid match is not found, return the [if_not_found] text you supply. If a valid match is not found, and [if_not_found] is missing, #N/A is returned."},matchMode:{name:"match_mode",detail:"Specify the match type: 0 - Exact match. If none found, return #N/A. This is the default. -1 - Exact match. If none found, return the next smaller item. 1 - Exact match. If none found, return the next larger item. 2 - A wildcard match where *, ?, and ~ have special meaning."},searchMode:{name:"search_mode",detail:"Specify the search mode to use: 1 - Perform a search starting at the first item. This is the default. -1 - Perform a reverse search starting at the last item. 2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. -2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned."}}},XMATCH:{description:"Searches for a specified item in an array or range of cells, and then returns the item's relative position.",abstract:"Returns the relative position of an item in an array or range of cells.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The lookup value"},lookupArray:{name:"lookup_array",detail:"The array or range to search"},matchMode:{name:"match_mode",detail:`Specify the match type: +0 - Exact match (default) +-1 - Exact match or next smallest item +1 - Exact match or next largest item +2 - A wildcard match where *, ?, and ~ have special meaning.`},searchMode:{name:"search_mode",detail:`Specify the search type: +1 - Search first-to-last (default) +-1 - Search last-to-first (reverse search). +2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. +-2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned.`}}}},...{DAVERAGE:{description:"Returns the average of selected database entries",abstract:"Returns the average of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNT:{description:"Counts the cells that contain numbers in a database",abstract:"Counts the cells that contain numbers in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNTA:{description:"Counts nonblank cells in a database",abstract:"Counts nonblank cells in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DGET:{description:"Extracts from a database a single record that matches the specified criteria",abstract:"Extracts from a database a single record that matches the specified criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMAX:{description:"Returns the maximum value from selected database entries",abstract:"Returns the maximum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMIN:{description:"Returns the minimum value from selected database entries",abstract:"Returns the minimum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DPRODUCT:{description:"Multiplies the values in a particular field of records that match the criteria in a database",abstract:"Multiplies the values in a particular field of records that match the criteria in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEV:{description:"Estimates the standard deviation based on a sample of selected database entries",abstract:"Estimates the standard deviation based on a sample of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEVP:{description:"Calculates the standard deviation based on the entire population of selected database entries",abstract:"Calculates the standard deviation based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSUM:{description:"Adds the numbers in the field column of records in the database that match the criteria",abstract:"Adds the numbers in the field column of records in the database that match the criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVAR:{description:"Estimates variance based on a sample from selected database entries",abstract:"Estimates variance based on a sample from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVARP:{description:"Calculates variance based on the entire population of selected database entries",abstract:"Calculates variance based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}}},...{ASC:{description:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",abstract:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any full-width letters, text is not changed."}}},ARRAYTOTEXT:{description:"Returns an array of text values from any specified range",abstract:"Returns an array of text values from any specified range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"array",detail:"The array to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},BAHTTEXT:{description:"Converts a number to text, using the ß (baht) currency format",abstract:"Converts a number to text, using the ß (baht) currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"number",detail:"A number you want to convert to text, or a reference to a cell containing a number, or a formula that evaluates to a number."}}},CHAR:{description:"Returns the character specified by the code number",abstract:"Returns the character specified by the code number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"number",detail:"A number between 1 and 255 specifying which character you want. The character is from the character set used by your computer."}}},CLEAN:{description:"Removes all nonprintable characters from text",abstract:"Removes all nonprintable characters from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"text",detail:"Any worksheet information from which you want to remove nonprintable characters."}}},CODE:{description:"Returns a numeric code for the first character in a text string",abstract:"Returns a numeric code for the first character in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"text",detail:"The text for which you want the code of the first character."}}},CONCAT:{description:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",abstract:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"text1",detail:"Text item to be joined. A string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 253 text arguments for the text items. Each can be a string, or array of strings, such as a range of cells."}}},CONCATENATE:{description:"Joins several text items into one text item",abstract:"Joins several text items into one text item",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"text1",detail:"The first item to join. The item can be a text value, number, or cell reference."},text2:{name:"text2",detail:"Additional text items to join. You can have up to 255 items, up to a total of 8,192 characters."}}},DBCS:{description:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",abstract:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any half-width English letters or katakana, text is not changed."}}},DOLLAR:{description:"Converts a number to text using currency format",abstract:"Converts a number to text using currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"number",detail:"A number, a reference to a cell containing a number, or a formula that evaluates to a number."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."}}},EXACT:{description:"Checks to see if two text values are identical",abstract:"Checks to see if two text values are identical",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926"}],functionParameter:{text1:{name:"text1",detail:"The first text string."},text2:{name:"text2",detail:"The second text string."}}},FIND:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FINDB:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FIXED:{description:"Formats a number as text with a fixed number of decimals",abstract:"Formats a number as text with a fixed number of decimals",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a"}],functionParameter:{number:{name:"number",detail:"The number you want to round and convert to text."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."},noCommas:{name:"no_commas",detail:"A logical value that, if TRUE, prevents FIXED from including commas in the returned text."}}},LEFT:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want LEFT to extract."}}},LEFTB:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want LEFTB to extract, based on bytes."}}},LEN:{description:"Returns the number of characters in a text string",abstract:"Returns the number of characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LENB:{description:"Returns the number of bytes used to represent the characters in a text string.",abstract:"Returns the number of bytes used to represent the characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LOWER:{description:"Converts text to lowercase.",abstract:"Converts text to lowercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"text",detail:"The text you want to convert to lowercase."}}},MID:{description:"Returns a specific number of characters from a text string starting at the position you specify.",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want MID to extract."}}},MIDB:{description:"Returns a specific number of characters from a text string starting at the position you specify",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want MIDB to extract, based on bytes."}}},NUMBERSTRING:{description:"Convert numbers to Chinese strings",abstract:"Convert numbers to Chinese strings",links:[{title:"Instruction",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"number",detail:"The value converted to a Chinese string."},type:{name:"type",detail:`The type of the returned result. +1. Chinese lowercase +2. Chinese uppercase +3. Reading and Writing Chinese Characters`}}},NUMBERVALUE:{description:"Converts text to number in a locale-independent manner",abstract:"Converts text to number in a locale-independent manner",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"text",detail:"The text to convert to a number."},decimalSeparator:{name:"decimal_separator",detail:"The character used to separate the integer and fractional part of the result."},groupSeparator:{name:"group_separator",detail:"The character used to separate groupings of numbers."}}},PHONETIC:{description:"Extracts the phonetic (furigana) characters from a text string",abstract:"Extracts the phonetic (furigana) characters from a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},PROPER:{description:"Capitalizes the first letter in each word of a text value",abstract:"Capitalizes the first letter in each word of a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94"}],functionParameter:{text:{name:"text",detail:"Text enclosed in quotation marks, a formula that returns text, or a reference to a cell containing the text you want to partially capitalize."}}},REGEXEXTRACT:{description:"Extracts the first matching substrings according to a regular expression.",abstract:"Extracts the first matching substrings according to a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The input text."},regularExpression:{name:"regular_expression",detail:"The first part of text that matches this expression will be returned."}}},REGEXMATCH:{description:"Whether a piece of text matches a regular expression.",abstract:"Whether a piece of text matches a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text to be tested against the regular expression."},regularExpression:{name:"regular_expression",detail:"The regular expression to test the text against."}}},REGEXREPLACE:{description:"Replaces part of a text string with a different text string using regular expressions.",abstract:"Replaces part of a text string with a different text string using regular expressions.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text, a part of which will be replaced."},regularExpression:{name:"regular_expression",detail:"The regular expression. All matching instances in text will be replaced."},replacement:{name:"replacement",detail:"The text which will be inserted into the original text."}}},REPLACE:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numChars:{name:"num_chars",detail:"The number of characters in old_text that you want REPLACE to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPLACEB:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numBytes:{name:"num_bytes",detail:"The number of bytes in old_text that you want REPLACEB to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPT:{description:"Repeats text a given number of times",abstract:"Repeats text a given number of times",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061"}],functionParameter:{text:{name:"text",detail:"The text you want to repeat."},numberTimes:{name:"number_times",detail:"A positive number specifying the number of times to repeat text."}}},RIGHT:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want RIGHT to extract."}}},RIGHTB:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want RIGHTB to extract, based on bytes."}}},SEARCH:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SEARCHB:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SUBSTITUTE:{description:"Substitutes new text for old text in a text string",abstract:"Substitutes new text for old text in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332"}],functionParameter:{text:{name:"text",detail:"The text or the reference to a cell containing text for which you want to substitute characters."},oldText:{name:"old_text",detail:"The text you want to replace."},newText:{name:"new_text",detail:"The text you want to replace old_text with."},instanceNum:{name:"instance_num",detail:"Specifies which occurrence of old_text you want to replace with new_text. If you specify instance_num, only that instance of old_text is replaced. Otherwise, every occurrence of old_text in text is changed to new_text."}}},T:{description:"Converts its arguments to text",abstract:"Converts its arguments to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-function-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"value",detail:"The value you want to test."}}},TEXT:{description:"Formats a number and converts it to text",abstract:"Formats a number and converts it to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"value",detail:"A numeric value that you want to be converted into text."},formatText:{name:"format_text",detail:"A text string that defines the formatting that you want to be applied to the supplied value."}}},TEXTAFTER:{description:"Returns text that occurs after given character or string",abstract:"Returns text that occurs after given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTBEFORE:{description:"Returns text that occurs before a given character or string",abstract:"Returns text that occurs before a given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTJOIN:{description:"Text: Combines the text from multiple ranges and/or strings",abstract:"Text: Combines the text from multiple ranges and/or strings",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"delimiter",detail:"A text string, either empty, or one or more characters enclosed by double quotes, or a reference to a valid text string."},ignoreEmpty:{name:"ignore_empty",detail:"If TRUE, ignores empty cells."},text1:{name:"text1",detail:"Text item to be joined. A text string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 252 text arguments for the text items, including text1. Each can be a text string, or array of strings, such as a range of cells."}}},TEXTSPLIT:{description:"Splits text strings by using column and row delimiters",abstract:"Splits text strings by using column and row delimiters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"text",detail:"The text to split."},colDelimiter:{name:"col_delimiter",detail:"The character or string by which to split the column."},rowDelimiter:{name:"row_delimiter",detail:"The character or string on which to split the line."},ignoreEmpty:{name:"ignore_empty",detail:"Whether to ignore empty cells. The default is FALSE."},matchMode:{name:"match_mode",detail:"Searches for a delimiter match in the text. By default, a case-sensitive match is done."},padWith:{name:"pad_with",detail:"The value to use for padding. By default, #N/A is used."}}},TRIM:{description:"Removes all spaces from text except for single spaces between words.",abstract:"Removes spaces from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"text",detail:"The text from which you want spaces removed."}}},UNICHAR:{description:"Returns the Unicode character that is references by the given numeric value",abstract:"Returns the Unicode character that is references by the given numeric value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8"}],functionParameter:{number:{name:"number",detail:"Number is the Unicode number that represents the character."}}},UNICODE:{description:"Returns the number (code point) that corresponds to the first character of the text",abstract:"Returns the number (code point) that corresponds to the first character of the text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f"}],functionParameter:{text:{name:"text",detail:"Text is the character for which you want the Unicode value."}}},UPPER:{description:"Converts text to uppercase",abstract:"Converts text to uppercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"text",detail:"The text you want converted to uppercase."}}},VALUE:{description:"Converts a text argument to a number",abstract:"Converts a text argument to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2"}],functionParameter:{text:{name:"text",detail:"The text enclosed in quotation marks or a reference to a cell containing the text you want to convert."}}},VALUETOTEXT:{description:"Returns text from any specified value",abstract:"Returns text from any specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"value",detail:"The value to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},CALL:{description:"Calls a procedure in a dynamic link library or code resource",abstract:"Calls a procedure in a dynamic link library or code resource",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},EUROCONVERT:{description:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",abstract:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},REGISTER_ID:{description:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",abstract:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{AND:{description:"Returns TRUE if all of its arguments are TRUE",abstract:"Returns TRUE if all of its arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},BYCOL:{description:"Applies a LAMBDA to each column and returns an array of the results",abstract:"Applies a LAMBDA to each column and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by column."},lambda:{name:"lambda",detail:"A LAMBDA that takes a column as a single parameter and calculates one result. The LAMBDA takes a single parameter: A column from array."}}},BYROW:{description:"Applies a LAMBDA to each row and returns an array of the results",abstract:"Applies a LAMBDA to each row and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by row."},lambda:{name:"lambda",detail:"A LAMBDA that takes a row as a single parameter and calculates one result. The LAMBDA takes a single parameter: A row from array."}}},FALSE:{description:"Returns the logical value FALSE.",abstract:"Returns the logical value FALSE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"Specifies a logical test to perform",abstract:"Specifies a logical test to perform",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"logical_test",detail:"The condition you want to test."},valueIfTrue:{name:"value_if_true",detail:"The value that you want returned if the result of logical_test is TRUE."},valueIfFalse:{name:"value_if_false",detail:"The value that you want returned if the result of logical_test is FALSE."}}},IFERROR:{description:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",abstract:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for an error."},valueIfError:{name:"value_if_error",detail:"The value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!."}}},IFNA:{description:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",abstract:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for the #N/A error value."},valueIfNa:{name:"value_if_na",detail:"The value to return if the formula evaluates to the #N/A error value."}}},IFS:{description:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",abstract:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"logical_test1",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue1:{name:"value_if_true1",detail:"Result to be returned if logical_test1 evaluates to TRUE. Can be empty."},logicalTest2:{name:"logical_test2",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue2:{name:"value_if_true2",detail:"Result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN corresponds with a condition logical_testN. Can be empty."}}},LAMBDA:{description:"Use a LAMBDA function to create custom, reusable functions and call them by a friendly name. The new function is available throughout the workbook and called like native Excel functions.",abstract:"Create custom, reusable functions and call them by a friendly name",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"parameter",detail:"A value that you want to pass to the function, such as a cell reference, string or number. You can enter up to 253 parameters. This argument is optional."},calculation:{name:"calculation",detail:"The formula you want to execute and return as the result of the function. It must be the last argument and it must return a result. This argument is required."}}},LET:{description:"Assigns names to calculation results",abstract:"Assigns names to calculation results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"name1",detail:"The first name to assign. Must start with a letter. Cannot be the output of a formula or conflict with range syntax."},nameValue1:{name:"name_value1",detail:"The value that is assigned to name1."},calculationOrName2:{name:"calculation_or_name2",detail:`One of the following: +1.A calculation that uses all names within the LET function. This must be the last argument in the LET function. +2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required.`},nameValue2:{name:"name_value2",detail:"The value that is assigned to calculation_or_name2."},calculationOrName3:{name:"calculation_or_name3",detail:`One of the following: +1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation. +2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"is the units for number."},toUnit:{name:"to_unit",detail:"is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 2 to 255 complex numbers",abstract:"Returns the product of from 2 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",abstract:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",abstract:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",abstract:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{description:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",abstract:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{description:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",abstract:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"Returns the number of items in a set.",abstract:"Returns the number of items in a set.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"Returns an aggregated value from the cube.",abstract:"Returns an aggregated value from the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Returns a URL-encoded string",abstract:"Returns a URL-encoded string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"text",detail:"A string to be URL encoded"}}},FILTERXML:{description:"Returns specific data from the XML content by using the specified XPath",abstract:"Returns specific data from the XML content by using the specified XPath",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"Returns data from a web service",abstract:"Returns data from a web service",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"Constrains an array result to a specified size.",abstract:"Constrains an array result to a specified size.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"input_range",detail:"The range to constrain."},numRows:{name:"num_rows",detail:"The number of rows the result should contain."},numCols:{name:"num_cols",detail:"The number of columns the result should contain"}}},FLATTEN:{description:"Flattens all the values from one or more ranges into a single column.",abstract:"Flattens all the values from one or more ranges into a single column.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"range1",detail:"The first range to flatten."},range2:{name:"range2",detail:"Additional ranges to flatten."}}}},...{}},prompt:{helpExample:"EXAMPLE",helpAbstract:"ABOUT",required:"Required.",optional:"Optional."},error:{title:"Error",divByZero:"Divide by zero error",name:"Invalid name error",value:"Error in value",num:"Number error",na:"Value not available error",cycle:"Circular reference error",ref:"Invalid cell reference error",spill:"Spill range isn't blank",calc:"Calculation error",error:"Error",connect:"Getting data",null:"Null Error"},functionType:{financial:"Financial",date:"Date & Time",math:"Math & Trig",statistical:"Statistical",lookup:"Lookup & Reference",database:"Database",text:"Text",logical:"Logical",information:"Information",engineering:"Engineering",cube:"Cube",compatibility:"Compatibility",web:"Web",array:"Array",univer:"Univer",user:"User Defined",definedname:"Defined Name"},moreFunctions:{confirm:"Confirm",prev:"Previous",next:"Next",searchFunctionPlaceholder:"Search function",allFunctions:"All Functions",syntax:"SYNTAX"},operation:{pasteFormula:"Paste Formula"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/en-US +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsNumfmtUiEnUS=n())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"Percentage",title:"Number format",numfmtType:"Format types",cancel:"Cancel",confirm:"Confirm",general:"General",accounting:"Accounting",text:"Text",number:"Number",currency:"Currency",date:"Date",time:"Time",thousandthPercentile:"Thousands separator",preview:"Preview",dateTime:"Date and time",decimalLength:"Decimal places",currencyType:"Currency Symbol",moreFmt:"Formats",financialValue:"Financial value",roundingCurrency:"Rounding up the currency",timeDuration:"Duration Time",currencyDes:"The currency format is used to represent general currency values. The accounting format aligns a column of values with decimal points",accountingDes:"The accounting number format aligns a column of values with currency symbols and decimal points",dateType:"Date Type",dateDes:"The date format presents date and time series values as date values.",negType:"A negative number type",generalDes:"The regular format does not contain any specific number format.",thousandthPercentileDes:"The percentile format is used for the representation of ordinary numbers. Monetary and accounting formats provide a specialized format for monetary value calculations.",addDecimal:"Increase decimal places",subtractDecimal:"Decreasing decimal places",customFormat:"Custom Format",customFormatDes:"Generate custom number formats based on existing formats."}}}}); + + +// locale/en-US +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n(require("@univerjs/core"),require("@univerjs/design/locale/en-US"),require("@univerjs/docs-ui/locale/en-US"),require("@univerjs/sheets/locale/en-US"),require("@univerjs/sheets-formula/locale/en-US"),require("@univerjs/sheets-formula-ui/locale/en-US"),require("@univerjs/sheets-numfmt-ui/locale/en-US"),require("@univerjs/sheets-ui/locale/en-US"),require("@univerjs/ui/locale/en-US")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/en-US","@univerjs/docs-ui/locale/en-US","@univerjs/sheets/locale/en-US","@univerjs/sheets-formula/locale/en-US","@univerjs/sheets-formula-ui/locale/en-US","@univerjs/sheets-numfmt-ui/locale/en-US","@univerjs/sheets-ui/locale/en-US","@univerjs/ui/locale/en-US"],n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreEnUS=n(e.UniverCore,e.UniverDesignEnUS,e.UniverDocsUiEnUS,e.UniverSheetsEnUS,e.UniverSheetsFormulaEnUS,e.UniverSheetsFormulaUiEnUS,e.UniverSheetsNumfmtUiEnUS,e.UniverSheetsUiEnUS,e.UniverUiEnUS))})(this,function(e,n,i,r,s,u,U,t,S){"use strict";return e.merge({},n,i,r,s,u,U,t,S)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fa-IR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fa-IR.js new file mode 100644 index 00000000..1071350f --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fa-IR.js @@ -0,0 +1,75 @@ +// @univerjs/ui/locale/fa-IR +(function(i,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define(e):(i=typeof globalThis<"u"?globalThis:i||self,i.UniverUiFaIR=e())})(this,function(){"use strict";return{ribbon:{start:"شروع",insert:"درج",formulas:"فرمول‌ها",data:"داده‌ها",view:"نمایش",others:"دیگر",more:"بیشتر"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"Microsoft YaHei",SimSun:"SimSun",SimHei:"SimHei",Kaiti:"Kaiti",FangSong:"FangSong",NSimSun:"NSimSun",STXinwei:"STXinwei",STXingkai:"STXingkai",STLiti:"STLiti",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"کلیدهای میانبر"},shortcut:{undo:"بازگرداندن",redo:"تکرار",cut:"بریدن",copy:"کپی کردن",paste:"چسباندن","shortcut-panel":"نمایش/مخفی کردن پنل کلیدهای میانبر"},"common-edit":"کلیدهای میانبر ویرایش عمومی","toggle-shortcut-panel":"نمایش/مخفی کردن پنل کلیدهای میانبر",clipboard:{authentication:{title:"اجازه دسترسی داده نشده است",content:"لطفا به Univer اجازه دسترسی به کلیپ بورد خود را بدهید."}},textEditor:{formulaError:"لطفا یک فرمول معتبر مانند =SUM(A1) وارد کنید.",rangeError:"لطفا یک محدوده معتبر مانند A1:B10 وارد کنید."},rangeSelector:{title:"انتخاب محدوده داده",addAnotherRange:"افزودن محدوده",buttonTooltip:"انتخاب محدوده داده",placeHolder:"انتخاب محدوده یا وارد کردن.",confirm:"تایید",cancel:"انصراف"},"global-shortcut":"کلید میانبر جهانی","zoom-slider":{resetTo:"بازنشانی به"}}}); + + +// @univerjs/docs-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiFaIR=t())})(this,function(){"use strict";return{toolbar:{undo:"بازگرداندن",redo:"تکرار",font:"فونت",fontSize:"اندازه فونت",bold:"پررنگ",italic:"ایتالیک",strikethrough:"خط‌دار",subscript:"زیرنویس",superscript:"بالانویس",underline:"خط‌کشی",textColor:{main:"رنگ متن",right:"انتخاب رنگ"},fillColor:{main:"رنگ پس‌زمینه متن",right:"انتخاب رنگ"},table:{main:"جدول",insert:"درج جدول",colCount:"تعداد ستون",rowCount:"تعداد سطر"},resetColor:"بازنشانی",order:"لیست شماره‌دار",unorder:"لیست بدون شماره",checklist:"لیست وظیفه",documentFlavor:"Modern Mode",alignLeft:"تراز چپ",alignCenter:"تراز وسط",alignRight:"تراز راست",alignJustify:"توجیه",headerFooter:"هدر و فوتر"},table:{insert:"درج",insertRowAbove:"درج سطر بالاتر",insertRowBelow:"درج سطر پایین‌تر",insertColumnLeft:"درج ستون چپ",insertColumnRight:"درج ستون راست",delete:"حذف جدول",deleteRows:"حذف سطر",deleteColumns:"حذف ستون",deleteTable:"حذف جدول"},headerFooter:{header:"هدر",footer:"فوتر",panel:"تنظیمات هدر و فوتر",firstPageCheckBox:"صفحه اول متفاوت",oddEvenCheckBox:"صفحات فرد و زوج متفاوت",headerTopMargin:"حاشیه بالای هدر(px)",footerBottomMargin:"حاشیه پایینی فوتر(px)",closeHeaderFooter:"بستن هدر و فوتر",disableText:"تنظیمات هدر و فوتر غیرفعال است"},doc:{menu:{paragraphSetting:"تنظیمات پاراگراف"},slider:{paragraphSetting:"تنظیمات پاراگراف"},paragraphSetting:{alignment:"تراز",indentation:"تورفتگی",left:"چپ",right:"راست",firstLine:"خط اول",hanging:"آویز",spacing:"فاصله‌گذاری",before:"قبل",after:"بعد",lineSpace:"فاصله خط",multiSpace:"فاصله چندگانه",fixedValue:"مقدار ثابت(px)"}}}}); + + +// @univerjs/sheets/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFaIR=t())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(کپی{0})",sheet:"برگ"},info:{overlappingSelections:"نمی‌توان از این دستور روی انتخاب‌های همپوشانی استفاده کرد",acrossMergedCell:"در سراسر سلول ادغام شده",partOfCell:"فقط بخشی از سلول ادغام شده انتخاب شده است",hideSheet:"پس از پنهان کردن این برگ، هیچ برگی قابل مشاهده نخواهد بود"}}}}); + + +// @univerjs/sheets-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsUiFaIR=t())})(this,function(){"use strict";return{spreadsheetLabel:"برگه گسترده",spreadsheetRightLabel:"برگه‌های بیشتر",toolbar:{undo:"بازگرداندن",redo:"تکرار",formatPainter:"کپی قالب",font:"فونت",fontSize:"اندازه فونت",bold:"پررنگ",italic:"ایتالیک",strikethrough:"خط‌دار",subscript:"زیرنویس",superscript:"بالانویس",underline:"خط‌کشی",textColor:{main:"رنگ متن",right:"انتخاب رنگ"},resetColor:"بازنشانی",fillColor:{main:"رنگ پر کردن",right:"انتخاب رنگ"},border:{main:"حاشیه",right:"سبک حاشیه"},mergeCell:{main:"ادغام سلول‌ها",right:"انتخاب نوع ادغام"},horizontalAlignMode:{main:"تراز افقی",right:"تراز"},verticalAlignMode:{main:"تراز عمودی",right:"تراز"},textWrapMode:{main:"پیچش متن",right:"حالت پیچش متن"},textRotateMode:{main:"چرخش متن",right:"حالت چرخش متن"},more:"بیشتر",toggleGridlines:"تغییر وضعیت خطوط شبکه"},align:{left:"چپ",center:"وسط",right:"راست",top:"بالا",middle:"وسط",bottom:"پایین"},button:{confirm:"تایید",cancel:"انصراف",close:"بستن",update:"به‌روزرسانی",delete:"حذف",insert:"درج",prevPage:"قبلی",nextPage:"بعدی",total:"مجموع:"},punctuation:{tab:"تب",semicolon:"نقطه‌ویرگول",comma:"ویرگول",space:"فاصله"},colorPicker:{collapse:"جمع کردن",customColor:"سفارشی",change:"تغییر",confirmColor:"تایید",cancelColor:"انصراف"},borderLine:{borderTop:"خط بالای قاب",borderBottom:"خط پایینی قاب",borderLeft:"خط چپ قاب",borderRight:"خط راست قاب",borderNone:"بدون حاشیه",borderAll:"همه حاشیه‌ها",borderOutside:"حاشیه بیرونی",borderInside:"حاشیه داخلی",borderHorizontal:"حاشیه افقی",borderVertical:"حاشیه عمودی",borderColor:"رنگ حاشیه",borderSize:"اندازه حاشیه",borderType:"نوع حاشیه"},merge:{all:"ادغام همه",vertical:"ادغام عمودی",horizontal:"ادغام افقی",cancel:"لغو ادغام",overlappingError:"نمی‌توان نواحی هم‌پوشان را ادغام کرد",partiallyError:"نمی‌توان این عملیات را روی سلول‌های ادغام‌شده جزئی انجام داد",confirm:{title:"ادامه ادغام فقط مقدار سلول بالا-چپ را نگه می‌دارد و مقادیر دیگر حذف خواهند شد. آیا مطمئن هستید که می‌خواهید ادامه دهید؟",cancel:"لغو ادغام",confirm:"ادامه ادغام",waring:"هشدار",dismantleMergeCellWaring:"این باعث شکستن برخی از سلول‌های ادغام‌شده می‌شود. آیا می‌خواهید ادامه دهید؟"}},filter:{confirm:{error:"مشکلی پیش آمد",notAllowedToInsertRange:"تا زمانی که فیلتر پاک نشود، اجازه حرکت سلول‌ها به اینجا داده نمی‌شود"}},textWrap:{overflow:"سرریز",wrap:"بپیچ",clip:"برش"},textRotate:{none:"هیچ",angleUp:"شیب بالا",angleDown:"شیب پایین",vertical:"عمودی انباشته کردن",rotationUp:"چرخش بالا",rotationDown:"چرخش پایین"},sheetConfig:{delete:"حذف",copy:"کپی",rename:"تغییر نام",changeColor:"تغییر رنگ",hide:"پنهان کردن",unhide:"نشان دادن",moveLeft:"جابجایی به چپ",moveRight:"جابجایی به راست",resetColor:"بازنشانی رنگ",cancelText:"انصراف",chooseText:"تایید رنگ",tipNameRepeat:"نام برگه زبانه نمی‌تواند تکرار شود! لطفا تجدید نظر کنید",noMoreSheet:"کاربرگ حداقل شامل یک برگه بصری است. برای حذف برگه انتخاب شده، لطفا یک برگه جدید وارد کنید یا یک برگه پنهان را نمایش دهید.",confirmDelete:"آیا مطمئن هستید که می‌خواهید حذف کنید",redoDelete:"می‌تواند با Ctrl+Z لغو شود",noHide:"نمی‌توان پنهان کرد، حداقل یک برگه تگ را نگه دارید",chartEditNoOpt:"این عملیات در حالت ویرایش نمودار مجاز نیست!",sheetNameErrorTitle:"مشکلی پیش آمد",sheetNameSpecCharError:"نام نمی‌تواند از 31 کاراکتر بیشتر باشد، نمی‌تواند با ' شروع یا پایان یابد و نمی‌تواند شامل: [ ] : \\ ? * / باشد",sheetNameCannotIsEmptyError:"نام برگه نمی‌تواند خالی باشد.",sheetNameAlreadyExistsError:"نام برگه قبلاً وجود دارد. لطفا نام دیگری وارد کنید.",deleteSheet:"حذف برگه",deleteSheetContent:"تایید حذف این برگه. پس از حذف، بازیابی نخواهد شد. آیا مطمئن هستید که می‌خواهید آن را حذف کنید؟",addProtectSheet:"محافظت از برگه",removeProtectSheet:"لغو محافظت از برگه",changeSheetPermission:"تغییر مجوزهای برگه",viewAllProtectArea:"مشاهده همه محدوده‌های محافظت شده"},rightClick:{copy:"کپی",cut:"برش",paste:"چسباندن",pasteSpecial:"چسباندن ویژه",pasteValue:"چسباندن مقدار",pasteFormat:"چسباندن قالب",pasteColWidth:"چسباندن عرض ستون",pasteBesidesBorder:"چسباندن کنار سبک‌های مرز",insert:"درج",insertRow:"درج سطر",insertRowBefore:"درج سطر قبل از",insertRowsAfter:"صفوف بعد ذلك",insertRowsAbove:"صفوف بعد ذلك",insertRowsAfterSuffix:"أدخل",insertRowsAboveSuffix:"أدخل",insertColumn:"درج ستون",insertColumnBefore:"درج ستون قبل از",insertColsLeft:"أعمدة إلى اليسار",insertColsRight:"صفوف إلى اليمين",insertColsLeftSuffix:"أدخل",insertColsRightSuffix:"أدخل",delete:"حذف",deleteCell:"حذف سلول",insertCell:"درج سلول",deleteSelected:"حذف انتخاب شده",hide:"پنهان کردن",hideSelected:"پنهان کردن انتخاب شده",showHide:"نمایش پنهان شده",toTopAdd:"اضافه کردن به بالا",toBottomAdd:"اضافه کردن به پایین",toLeftAdd:"اضافه کردن به چپ",toRightAdd:"اضافه کردن به راست",deleteSelectedRow:"حذف سطر انتخاب شده",deleteSelectedColumn:"حذف ستون انتخاب شده",hideSelectedRow:"پنهان کردن سطر انتخاب شده",showHideRow:"نمایش سطر انتخاب شده",rowHeight:"ارتفاع سطر",hideSelectedColumn:"پنهان کردن ستون انتخاب شده",showHideColumn:"نمایش پنهان کردن ستون",columnWidth:"عرض ستون",moveLeft:"جابجایی به چپ",moveUp:"جابجایی به بالا",moveRight:"جابجایی به راست",moveDown:"جابجایی به پایین",add:"اضافه کردن",row:"سطر",column:"ستون",confirm:"تایید",clearSelection:"پاک کردن",clearContent:"پاک کردن محتوا",clearFormat:"پاک کردن قالب‌ها",clearAll:"پاک کردن همه",root:"ریشه",log:"لوگاریتم",delete0:"حذف مقادیر 0 در دو طرف",removeDuplicate:"حذف مقادیر تکراری",byRow:"بر اساس سطر",byCol:"بر اساس ستون",generateNewMatrix:"ایجاد ماتریس جدید",fitContent:"مناسب برای داده‌ها",freeze:"انجماد",freezeCol:"انجماد در این ستون",freezeRow:"انجماد در این سطر",cancelFreeze:"لغو انجماد",deleteAllRowsAlert:"شما نمی‌توانید تمام سطرهای برگه را حذف کنید",deleteAllColumnsAlert:"شما نمی‌توانید تمام ستون‌های برگه را حذف کنید",hideAllRowsAlert:"شما نمی‌توانید تمام سطرهای برگه را پنهان کنید",hideAllColumnsAlert:"شما نمی‌توانید تمام ستون‌های برگه را پنهان کنید",protectRange:"محافظت از سطرها و ستون‌ها",editProtectRange:"تنظیم محدوده محافظت",removeProtectRange:"حذف محدوده محافظت",turnOnProtectRange:"اضافه کردن محدوده محافظت",viewAllProtectArea:"مشاهده همه محدوده‌های محافظت شده"},info:{tooltip:"راهنما",error:"خطا",notChangeMerge:"شما نمی‌توانید تغییرات جزئی در سلول‌های ادغام شده ایجاد کنید",detailUpdate:"جدید باز شد",detailSave:"پنهانگاه محلی بازیابی شد",row:"",column:"",loading:"در حال بارگیری...",copy:"کپی",return:"خروج",rename:"تغییر نام",tips:"تغییر نام",noName:"بدون عنوان صفحه گسترده",wait:"در انتظار به‌روزرسانی",add:"اضافه کردن",addLast:"سطرهای بیشتر در پایین",backTop:"بازگشت به بالا",pageInfo:"مجموع ${total}، ${totalPage} صفحه، جاری ${currentPage}",nextPage:"بعدی",tipInputNumber:"لطفا عدد را وارد کنید",tipInputNumberLimit:"محدوده افزایش محدود به 1-100 است",tipRowHeightLimit:"ارتفاع سطر باید بین 0 ~ 545 باشد",tipColumnWidthLimit:"عرض ستون باید بین 0 ~ 2038 باشد",pageInfoFull:"مجموع ${total}، ${totalPage} صفحه، همه داده‌ها نمایش داده شده",problem:"مشکلی پیش آمد",forceStringInfo:"عدد به عنوان متن ذخیره شده"},clipboard:{paste:{exceedMaxCells:"تعداد سلول‌های چسبانده شده از حداکثر تعداد سلول‌ها فراتر می‌رود",overlappingMergedCells:"منطقه چسباندن با سلول‌های ادغام شده همپوشانی دارد"},shortCutNotify:{title:"لطفا با استفاده از میانبرهای صفحه کلید بچسبانید.",useShortCutInstead:"محتوای اکسل تشخیص داده شد. از میانبر صفحه کلید برای چسباندن استفاده کنید."}},statusbar:{sum:"جمع",average:"میانگین",min:"حداقل",max:"حداکثر",count:"شمارش عددی",countA:"شمارش",clickToCopy:"کلیک کنید تا کپی کنید",copied:"کپی شد"},autoFill:{copy:"کپی سلول",series:"پر کردن سری",formatOnly:"فقط قالب",noFormat:"بدون قالب"},rangeSelector:{placeholder:"انتخاب محدوده یا وارد کردن مقدار",tooltip:"انتخاب محدوده"},shortcut:{sheet:{"zoom-in":"بزرگنمایی","zoom-out":"کوچکنمایی","reset-zoom":"بازنشانی سطح بزرگنمایی","select-below-cell":"انتخاب سلول پایین","select-up-cell":"انتخاب سلول بالا","select-left-cell":"انتخاب سلول چپ","select-right-cell":"انتخاب سلول راست","select-next-cell":"انتخاب سلول بعدی","select-previous-cell":"انتخاب سلول قبلی","select-up-value-cell":"انتخاب سلول بالا که دارای مقدار است","select-below-value-cell":"انتخاب سلول پایین که دارای مقدار است","select-left-value-cell":"انتخاب سلول چپ که دارای مقدار است","select-right-value-cell":"انتخاب سلول راست که دارای مقدار است","expand-selection-down":"گسترش انتخاب به پایین","expand-selection-up":"گسترش انتخاب به بالا","expand-selection-left":"گسترش انتخاب به چپ","expand-selection-right":"گسترش انتخاب به راست","expand-selection-to-left-gap":"گسترش انتخاب به شکاف چپ","expand-selection-to-below-gap":"گسترش انتخاب به شکاف پایین","expand-selection-to-right-gap":"گسترش انتخاب به شکاف راست","expand-selection-to-up-gap":"گسترش انتخاب به شکاف بالا","select-all":"انتخاب همه","toggle-editing":"تغییر حالت ویرایش","delete-and-start-editing":"پاک کردن و شروع ویرایش","abort-editing":"لغو ویرایش","break-line":"شکستن خط","set-bold":"تغییر حالت پررنگ","start-editing":"شروع ویرایش (انتخاب در ویرایشگر)","set-italic":"تغییر حالت مورب","set-underline":"تغییر حالت خط زیرین","set-strike-through":"تغییر حالت خط‌خورده"}},"sheet-view":"نمای برگه","sheet-edit":"ویرایش برگه",definedName:{managerTitle:"مدیر نامگذاری شده",managerDescription:"با انتخاب سلول‌ها یا فرمول‌ها و وارد کردن نام دلخواه در کادر متن، یک نام تعریف شده ایجاد کنید.",addButton:"اضافه کردن نام تعریف شده",featureTitle:"نام‌های تعریف شده",ratioRange:"محدوده",ratioFormula:"فرمول",confirm:"تایید",cancel:"انصراف",scopeWorkbook:"کاربرگ",inputNamePlaceholder:"لطفا نام را وارد کنید (فاصله مجاز نیست)",inputCommentPlaceholder:"لطفا یک نظر وارد کنید",inputRangePlaceholder:"لطفا محدوده را وارد کنید (فاصله مجاز نیست)",inputFormulaPlaceholder:"لطفا یک فرمول وارد کنید (فاصله مجاز نیست)",nameEmpty:"نام نمی‌تواند خالی باشد",nameDuplicate:"نام قبلاً وجود دارد",formulaOrRefStringEmpty:"فرمول یا رشته مرجع نمی‌تواند خالی باشد",formulaOrRefStringInvalid:"فرمول یا رشته مرجع نامعتبر است",defaultName:"DefinedName",updateButton:"به‌روزرسانی",deleteButton:"حذف",deleteConfirmText:"آیا مطمئن هستید که می‌خواهید این نام تعریف شده را حذف کنید؟",nameConflict:"نام با نام تابع در تضاد است",nameInvalid:"نام نامعتبر است",nameSheetConflict:"نام با نام برگه در تضاد است"},uploadLoading:{loading:"در حال بارگیری...، باقی مانده",error:"خطا"},permission:{toolbarMenu:"محافظت",panel:{title:"محافظت از سطرها و ستون‌ها",name:"نام",protectedRange:"محدوده محافظت شده",permissionDirection:"شرح مجوز",permissionDirectionPlaceholder:"شرح مجوز را وارد کنید",editPermission:"ویرایش مجوزها",onlyICanEdit:"فقط من می‌توانم ویرایش کنم",designedUserCanEdit:"کاربران مشخص شده می‌توانند ویرایش کنند",viewPermission:"مجوز مشاهده",othersCanView:"دیگران می‌توانند مشاهده کنند",noOneElseCanView:"هیچ کس دیگری نمی‌تواند مشاهده کند",designedPerson:"افراد مشخص شده",addPerson:"اضافه کردن شخص",canEdit:"می‌تواند ویرایش کند",canView:"می‌تواند مشاهده کند",delete:"حذف",currentSheet:"برگه فعلی",allSheet:"همه برگه‌ها",edit:"ویرایش",Print:"چاپ",Comment:"نظر",Copy:"کپی",SetCellStyle:"تنظیم سبک سلول",SetCellValue:"تنظیم مقدار سلول",SetHyperLink:"تنظیم هایپرلینک",Sort:"مرتب‌سازی",Filter:"فیلتر",PivotTable:"جدول محوری",FloatImage:"تصویر شناور",RowHeightColWidth:"ارتفاع سطر و عرض ستون",RowHeightColWidthReadonly:"ارتفاع سطر و عرض ستون فقط خواندنی",FilterReadonly:"فیلتر فقط خواندنی",nameError:"نام نمی‌تواند خالی باشد",created:"ایجاد شده",iCanEdit:"من می‌توانم ویرایش کنم",iCanNotEdit:"من نمی‌توانم ویرایش کنم",iCanView:"من می‌توانم مشاهده کنم",iCanNotView:"من نمی‌توانم مشاهده کنم",emptyRangeError:"محدوده نمی‌تواند خالی باشد",rangeOverlapError:"محدوده نمی‌تواند همپوشانی داشته باشد",rangeOverlapOverPermissionError:"محدوده نمی‌تواند با محدوده‌ای که دارای همان مجوز است همپوشانی داشته باشد",InsertHyperlink:"درج هایپرلینک",SetRowStyle:"تنظیم سبک سطر",SetColumnStyle:"تنظیم سبک ستون",InsertColumn:"درج ستون",InsertRow:"درج سطر",DeleteRow:"حذف سطر",DeleteColumn:"حذف ستون",EditExtraObject:"ویرایش شیء اضافی"},dialog:{allowUserToEdit:"اجازه ویرایش به کاربر",allowedPermissionType:"انواع مجوز مجاز",setCellValue:"تنظیم مقدار سلول",setCellStyle:"تنظیم سبک سلول",copy:"کپی",alert:"هشدار",search:"جستجو",alertContent:"این محدوده محافظت شده است و در حال حاضر هیچ مجوز ویرایشی در دسترس نیست. اگر نیاز به ویرایش دارید، لطفا با سازنده تماس بگیرید.",userEmpty:"هیچ شخص تعیین شده‌ای وجود ندارد، لینک اشتراک را برای دعوت افراد خاص ارسال کنید.",listEmpty:"شما هیچ محدوده یا برگه‌ای را به عنوان محافظت شده تنظیم نکرده‌اید.",commonErr:"محدوده محافظت شده است و شما مجوز این عملیات را ندارید. برای ویرایش، لطفا با سازنده تماس بگیرید.",editErr:"محدوده محافظت شده است و شما مجوز ویرایش را ندارید. برای ویرایش، لطفا با سازنده تماس بگیرید.",pasteErr:"محدوده محافظت شده است و شما مجوز چسباندن را ندارید. برای چسباندن، لطفا با سازنده تماس بگیرید.",setStyleErr:"محدوده محافظت شده است و شما مجوز تنظیم سبک‌ها را ندارید. برای تنظیم سبک‌ها، لطفا با سازنده تماس بگیرید.",copyErr:"محدوده محافظت شده است و شما مجوز کپی را ندارید. برای کپی کردن، لطفا با سازنده تماس بگیرید.",workbookCopyErr:"کاربرگ محافظت شده است و شما مجوز کپی کردن را ندارید. برای کپی کردن، لطفا با سازنده تماس بگیرید.",setRowColStyleErr:"محدوده محافظت شده است و شما مجوز تنظیم سبک‌های سطر و ستون را ندارید. برای تنظیم سبک‌های سطر و ستون، لطفا با سازنده تماس بگیرید.",moveRowColErr:"محدوده محافظت شده است و شما مجوز جابجایی سطرها و ستون‌ها را ندارید. برای جابجایی سطرها و ستون‌ها، لطفا با سازنده تماس بگیرید.",moveRangeErr:"محدوده محافظت شده است و شما مجوز جابجایی انتخاب را ندارید. برای جابجایی انتخاب، لطفا با سازنده تماس بگیرید.",autoFillErr:"محدوده محافظت شده است و شما مجوز پر کردن خودکار را ندارید. برای استفاده از پر کردن خودکار، لطفا با سازنده تماس بگیرید.",filterErr:"محدوده محافظت شده است و شما مجوز فیلتر کردن را ندارید. برای فیلتر کردن، لطفا با سازنده تماس بگیرید.",operatorSheetErr:"کاربرگ محافظت شده است و شما مجوز کار با کاربرگ را ندارید. برای کار با کاربرگ، لطفا با سازنده تماس بگیرید.",insertOrDeleteMoveRangeErr:"محدوده درج شده یا حذف شده با محدوده محافظت شده تلاقی دارد و این عملیات در حال حاضر پشتیبانی نمی‌شود.",printErr:"کاربرگ محافظت شده است و شما مجوز چاپ را ندارید. برای چاپ، لطفا با سازنده تماس بگیرید.",formulaErr:"محدوده یا محدوده مرجع محافظت شده است و شما مجوز ویرایش را ندارید. برای ویرایش، لطفا با سازنده تماس بگیرید.",hyperLinkErr:"محدوده محافظت شده است و شما مجوز تنظیم هایپرلینک را ندارید. برای تنظیم هایپرلینک، لطفا با سازنده تماس بگیرید."},button:{confirm:"تایید",cancel:"انصراف",addNewPermission:"اضافه کردن مجوز جدید"}}}}); + + +// @univerjs/sheets-formula/locale/fa-IR +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaFaIR=n())})(this,function(){"use strict";return{formula:{progress:{analyzing:"در حال تحلیل",calculating:"در حال محاسبه","array-analysis":"تحلیل آرایه","array-calculation":"محاسبه آرایه",done:"تمام"}}}}); + + +// @univerjs/sheets-formula-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaUiFaIR=t())})(this,function(){"use strict";return{formula:{insert:{tooltip:"توابع",sum:"SUM",average:"AVERAGE",count:"COUNT",max:"MAX",min:"MIN",more:"توابع بیشتر..."},functionList:{...{ACCRINT:{description:"Returns the accrued interest for a security that pays periodic interest",abstract:"Returns the accrued interest for a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},firstInterest:{name:"first_interest",detail:"The security's first interest date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."},calcMethod:{name:"calc_method",detail:"Is a logical value: interest accrues from the issue date = TRUE or ignored; interest accrues from the last coupon payment date = FALSE."}}},ACCRINTM:{description:"Returns the accrued interest for a security that pays interest at maturity",abstract:"Returns the accrued interest for a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},AMORDEGRC:{description:"Returns the depreciation for each accounting period by using a depreciation coefficient",abstract:"Returns the depreciation for each accounting period by using a depreciation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"Returns the depreciation for each accounting period",abstract:"Returns the depreciation for each accounting period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"cost",detail:"The cost of the asset."},datePurchased:{name:"date_purchased",detail:"The date of the purchase of the asset."},firstPeriod:{name:"first_period",detail:"The date of the end of the first period."},salvage:{name:"salvage",detail:"The salvage value at the end of the life of the asset."},period:{name:"period",detail:"The period."},rate:{name:"rate",detail:"The rate of depreciation."},basis:{name:"basis",detail:"The year basis to be used."}}},COUPDAYBS:{description:"Returns the number of days from the beginning of the coupon period to the settlement date",abstract:"Returns the number of days from the beginning of the coupon period to the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYS:{description:"Returns the number of days in the coupon period that contains the settlement date",abstract:"Returns the number of days in the coupon period that contains the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYSNC:{description:"Returns the number of days from the settlement date to the next coupon date",abstract:"Returns the number of days from the settlement date to the next coupon date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNCD:{description:"Returns the next coupon date after the settlement date",abstract:"Returns the next coupon date after the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNUM:{description:"Returns the number of coupons payable between the settlement date and maturity date",abstract:"Returns the number of coupons payable between the settlement date and maturity date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPPCD:{description:"Returns the previous coupon date before the settlement date",abstract:"Returns the previous coupon date before the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},CUMIPMT:{description:"Returns the cumulative interest paid between two periods",abstract:"Returns the cumulative interest paid between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},CUMPRINC:{description:"Returns the cumulative principal paid on a loan between two periods",abstract:"Returns the cumulative principal paid on a loan between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},DB:{description:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",abstract:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},month:{name:"month",detail:"The number of months in the first year. If month is omitted, it is assumed to be 12."}}},DDB:{description:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",abstract:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."}}},DISC:{description:"Returns the discount rate for a security",abstract:"Returns the discount rate for a security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},DOLLARDE:{description:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",abstract:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427"}],functionParameter:{fractionalDollar:{name:"fractional_dollar",detail:"A number expressed as an integer part and a fraction part, separated by a decimal symbol."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DOLLARFR:{description:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",abstract:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495"}],functionParameter:{decimalDollar:{name:"decimal_dollar",detail:"A decimal number."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DURATION:{description:"Returns the annual duration of a security with periodic interest payments",abstract:"Returns the annual duration of a security with periodic interest payments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},EFFECT:{description:"Returns the effective annual interest rate",abstract:"Returns the effective annual interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4"}],functionParameter:{nominalRate:{name:"nominal_rate",detail:"The nominal interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},FV:{description:"Returns the future value of an investment",abstract:"Returns the future value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},FVSCHEDULE:{description:"Returns the future value of an initial principal after applying a series of compound interest rates",abstract:"Returns the future value of an initial principal after applying a series of compound interest rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d"}],functionParameter:{principal:{name:"principal",detail:"The present value."},schedule:{name:"schedule",detail:"An array of interest rates to apply."}}},INTRATE:{description:"Returns the interest rate for a fully invested security",abstract:"Returns the interest rate for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},redemption:{name:"redemption",detail:"The amount to be received at maturity."},basis:{name:"basis",detail:"The type of day count basis to use."}}},IPMT:{description:"Returns the interest payment for an investment for a given period",abstract:"Returns the interest payment for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},IRR:{description:"Returns the internal rate of return for a series of cash flows",abstract:"Returns the internal rate of return for a series of cash flows",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers for which you want to calculate the internal rate of return. +1.Values must contain at least one positive value and one negative value to calculate the internal rate of return. +2.IRR uses the order of values to interpret the order of cash flows. Be sure to enter your payment and income values in the sequence you want. +3.If an array or reference argument contains text, logical values, or empty cells, those values are ignored.`},guess:{name:"guess",detail:"A number that you guess is close to the result of IRR."}}},ISPMT:{description:"Calculates the interest paid during a specific period of an investment",abstract:"Calculates the interest paid during a specific period of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc"}],functionParameter:{rate:{name:"rate",detail:"The interest rate for the investment."},per:{name:"per",detail:"The period for which you want to find the interest, and must be between 1 and Nper."},nper:{name:"nper",detail:"The total number of payment periods for the investment."},pv:{name:"pv",detail:"The present value of the investment. For a loan, Pv is the loan amount."}}},MDURATION:{description:"Returns the Macauley modified duration for a security with an assumed par value of $100",abstract:"Returns the Macauley modified duration for a security with an assumed par value of $100",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},MIRR:{description:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",abstract:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers. These numbers represent a series of payments (negative values) and income (positive values) occurring at regular periods. +1.Values must contain at least one positive value and one negative value to calculate the modified internal rate of return. Otherwise, MIRR returns the #DIV/0! error value. +2.If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.`},financeRate:{name:"finance_rate",detail:"The interest rate you pay on the money used in the cash flows."},reinvestRate:{name:"reinvest_rate",detail:"The interest rate you receive on the cash flows as you reinvest them."}}},NOMINAL:{description:"Returns the annual nominal interest rate",abstract:"Returns the annual nominal interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b"}],functionParameter:{effectRate:{name:"effect_rate",detail:"The effective interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},NPER:{description:"Returns the number of periods for an investment",abstract:"Returns the number of periods for an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},NPV:{description:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",abstract:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568"}],functionParameter:{rate:{name:"rate",detail:"The rate of discount over the length of one period."},value1:{name:"value1",detail:"1 to 254 arguments representing the payments and income."},value2:{name:"value2",detail:"1 to 254 arguments representing the payments and income."}}},ODDFPRICE:{description:"Returns the price per $100 face value of a security with an odd first period",abstract:"Returns the price per $100 face value of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDFYIELD:{description:"Returns the yield of a security with an odd first period",abstract:"Returns the yield of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLPRICE:{description:"Returns the price per $100 face value of a security with an odd last period",abstract:"Returns the price per $100 face value of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLYIELD:{description:"Returns the yield of a security with an odd last period",abstract:"Returns the yield of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PDURATION:{description:"Returns the number of periods required by an investment to reach a specified value",abstract:"Returns the number of periods required by an investment to reach a specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"rate",detail:"Rate is the interest rate per period."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the desired future value of the investment."}}},PMT:{description:"Returns the periodic payment for an annuity",abstract:"Returns the periodic payment for an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PPMT:{description:"Returns the payment on the principal for an investment for a given period",abstract:"Returns the payment on the principal for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PRICE:{description:"Returns the price per $100 face value of a security that pays periodic interest",abstract:"Returns the price per $100 face value of a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEDISC:{description:"Returns the price per $100 face value of a discounted security",abstract:"Returns the price per $100 face value of a discounted security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},discount:{name:"discount",detail:"The security's discount rate."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEMAT:{description:"Returns the price per $100 face value of a security that pays interest at maturity",abstract:"Returns the price per $100 face value of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PV:{description:"Returns the present value of an investment",abstract:"Returns the present value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},RATE:{description:"Returns the interest rate per period of an annuity",abstract:"Returns the interest rate per period of an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce"}],functionParameter:{nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."},guess:{name:"guess",detail:"Your guess for what the rate will be."}}},RECEIVED:{description:"Returns the amount received at maturity for a fully invested security",abstract:"Returns the amount received at maturity for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},discount:{name:"discount",detail:"The security's discount rate."},basis:{name:"basis",detail:"The type of day count basis to use."}}},RRI:{description:"Returns an equivalent interest rate for the growth of an investment",abstract:"Returns an equivalent interest rate for the growth of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"nper",detail:"Nper is the number of periods for the investment."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the future value of the investment."}}},SLN:{description:"Returns the straight-line depreciation of an asset for one period",abstract:"Returns the straight-line depreciation of an asset for one period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."}}},SYD:{description:"Returns the sum-of-years' digits depreciation of an asset for a specified period",abstract:"Returns the sum-of-years' digits depreciation of an asset for a specified period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."},per:{name:"per",detail:"The period and must use the same units as life."}}},TBILLEQ:{description:"Returns the bond-equivalent yield for a Treasury bill",abstract:"Returns the bond-equivalent yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLPRICE:{description:"Returns the price per $100 face value for a Treasury bill",abstract:"Returns the price per $100 face value for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLYIELD:{description:"Returns the yield for a Treasury bill",abstract:"Returns the yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},pr:{name:"pr",detail:"The Treasury bill's price per $100 face value."}}},VDB:{description:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",abstract:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},startPeriod:{name:"start_period",detail:"The starting period for which you want to calculate the depreciation."},endPeriod:{name:"end_period",detail:"The ending period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."},noSwitch:{name:"no_switch",detail:"A logical value specifying whether to switch to straight-line depreciation when depreciation is greater than the declining balance calculation."}}},XIRR:{description:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d"}],functionParameter:{values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."},guess:{name:"guess",detail:"A number that you guess is close to the result of XIRR."}}},XNPV:{description:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7"}],functionParameter:{rate:{name:"rate",detail:"The discount rate to apply to the cash flows."},values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."}}},YIELD:{description:"Returns the yield on a security that pays periodic interest",abstract:"Returns the yield on a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDDISC:{description:"Returns the annual yield for a discounted security; for example, a Treasury bill",abstract:"Returns the annual yield for a discounted security; for example, a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDMAT:{description:"Returns the annual yield of a security that pays interest at maturity",abstract:"Returns the annual yield of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{DATE:{description:"Returns the serial number of a particular date",abstract:"Returns the serial number of a particular date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"year",detail:"The value of the year argument can include one to four digits. Excel interprets the year argument according to the date system your computer is using. By default, Univer uses the 1900 date system, which means the first date is January 1, 1900."},month:{name:"month",detail:"A positive or negative integer representing the month of the year from 1 to 12 (January to December)."},day:{name:"day",detail:"A positive or negative integer representing the day of the month from 1 to 31."}}},DATEDIF:{description:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",abstract:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the first, or starting date of a given period."},endDate:{name:"end_date",detail:"A date that represents the last, or ending, date of the period."},method:{name:"method",detail:"The type of information that you want returned."}}},DATEVALUE:{description:"Converts a date in the form of text to a serial number.",abstract:"Converts a date in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"date_text",detail:`Text that represents a date in an Excel date format, or a reference to a cell that contains text that represents a date in an Excel date format. For example, "1/30/2008" or "30-Jan-2008" are text strings within quotation marks that represent dates. +Using the default date system in Microsoft Excel for Windows, the date_text argument must represent a date between January 1, 1900 and December 31, 9999. The DATEVALUE function returns the #VALUE! error value if the value of the date_text argument falls outside of this range. +If the year portion of the date_text argument is omitted, the DATEVALUE function uses the current year from your computer's built-in clock. Time information in the date_text argument is ignored.`}}},DAY:{description:"Returns the day of a date, represented by a serial number. The day is given as an integer ranging from 1 to 31.",abstract:"Converts a serial number to a day of the month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},DAYS:{description:"Returns the number of days between two dates",abstract:"Returns the number of days between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."}}},DAYS360:{description:"Calculates the number of days between two dates based on a 360-day year",abstract:"Calculates the number of days between two dates based on a 360-day year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},method:{name:"method",detail:"A logical value that specifies whether to use the U.S. or European method in the calculation."}}},EDATE:{description:"Returns the serial number that represents the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue.",abstract:"Returns the serial number of the date that is the indicated number of months before or after the start date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."},months:{name:"months",detail:"The number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date."}}},EOMONTH:{description:"Returns the serial number of the last day of the month before or after a specified number of months",abstract:"Returns the serial number of the last day of the month before or after a specified number of months",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the starting date."},months:{name:"months",detail:"The number of months before or after start_date."}}},EPOCHTODATE:{description:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",abstract:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"timestamp",detail:"A Unix epoch timestamp, in seconds, milliseconds, or microseconds."},unit:{name:"unit",detail:`The unit of time in which the timestamp is expressed. 1 by default: +1 indicates the time unit is seconds. +2 indicates the time unit is milliseconds. +3 indicates the time unit is microseconds.`}}},HOUR:{description:"Converts a serial number to an hour",abstract:"Converts a serial number to an hour",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},ISOWEEKNUM:{description:"Returns the number of the ISO week number of the year for a given date",abstract:"Returns the number of the ISO week number of the year for a given date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"date",detail:"Date is the date-time code used by Excel for date and time calculation."}}},MINUTE:{description:"Converts a serial number to a minute",abstract:"Converts a serial number to a minute",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},MONTH:{description:"Returns the month of a date represented by a serial number. The month is given as an integer, ranging from 1 (January) to 12 (December).",abstract:"Converts a serial number to a month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8"}],functionParameter:{serialNumber:{name:"serial_number",detail:"Required. The date of the month you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},NETWORKDAYS:{description:"Returns the number of whole workdays between two dates",abstract:"Returns the number of whole workdays between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NETWORKDAYS_INTL:{description:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",abstract:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NOW:{description:"Returns the serial number of the current date and time.",abstract:"Returns the serial number of the current date and time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46"}],functionParameter:{}},SECOND:{description:"Converts a serial number to a second",abstract:"Converts a serial number to a second",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},TIME:{description:"Returns the serial number of a particular time.",abstract:"Returns the serial number of a particular time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457"}],functionParameter:{hour:{name:"hour",detail:"A number from 0 (zero) to 32767 representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, TIME(27,0,0) = TIME(3,0,0) = .125 or 3:00 AM."},minute:{name:"minute",detail:"A number from 0 to 32767 representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM."},second:{name:"second",detail:"A number from 0 to 32767 representing the second. Any value greater than 59 will be converted to hours, minutes, and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 or 12:33:20 AM."}}},TIMEVALUE:{description:"Converts a time in the form of text to a serial number.",abstract:"Converts a time in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645"}],functionParameter:{timeText:{name:"time_text",detail:'A text string that represents a time in any one of the Microsoft Excel time formats; for example, "6:45 PM" and "18:45" text strings within quotation marks that represent time.'}}},TO_DATE:{description:"Converts a provided number to a date.",abstract:"Converts a provided number to a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The argument or reference to a cell to be converted to a date."}}},TODAY:{description:"Returns the serial number of today's date",abstract:"Returns the serial number of today's date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9"}],functionParameter:{}},WEEKDAY:{description:"Converts a serial number to a day of the week",abstract:"Converts a serial number to a day of the week",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A sequential number that represents the date of the day you are trying to find."},returnType:{name:"return_type",detail:"A number that determines the type of return value."}}},WEEKNUM:{description:"Converts a serial number to a number representing where the week falls numerically with a year",abstract:"Converts a serial number to a number representing where the week falls numerically with a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A date within the week."},returnType:{name:"return_type",detail:"A number that determines on which day the week begins. The default is 1."}}},WORKDAY:{description:"Returns the serial number of the date before or after a specified number of workdays",abstract:"Returns the serial number of the date before or after a specified number of workdays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},WORKDAY_INTL:{description:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",abstract:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},YEAR:{description:"Returns the year corresponding to a date. The year is returned as an integer in the range 1900-9999.",abstract:"Converts a serial number to a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the year you want to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."}}},YEARFRAC:{description:"Returns the year fraction representing the number of whole days between start_date and end_date",abstract:"Returns the year fraction representing the number of whole days between start_date and end_date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{ABS:{description:"Returns the absolute value of a number. The absolute value of a number is the number without its sign.",abstract:"Returns the absolute value of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"number",detail:"The real number of which you want the absolute value."}}},ACOS:{description:"Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is number. The returned angle is given in radians in the range 0 (zero) to pi.",abstract:"Returns the arccosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"number",detail:"The cosine of the angle you want and must be from -1 to 1."}}},ACOSH:{description:"Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is number, so ACOSH(COSH(number)) equals number.",abstract:"Returns the inverse hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"number",detail:"Any real number equal to or greater than 1."}}},ACOT:{description:"Returns the principal value of the arccotangent, or inverse cotangent, of a number.",abstract:"Returns the arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"number",detail:"Number is the cotangent of the angle you want. This must be a real number."}}},ACOTH:{description:"Returns the hyperbolic arccotangent of a number",abstract:"Returns the hyperbolic arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"number",detail:"The absolute value of Number must be greater than 1."}}},AGGREGATE:{description:"Returns an aggregate in a list or database",abstract:"Returns an aggregate in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ARABIC:{description:"Converts a Roman number to Arabic, as a number",abstract:"Converts a Roman number to Arabic, as a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"text",detail:'A string enclosed in quotation marks, an empty string (""), or a reference to a cell containing text.'}}},ASIN:{description:"Returns the arcsine of a number.",abstract:"Returns the arcsine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"number",detail:"The sine of the angle you want and must be from -1 to 1."}}},ASINH:{description:"Returns the inverse hyperbolic sine of a number.",abstract:"Returns the inverse hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},ATAN:{description:"Returns the arctangent of a number.",abstract:"Returns the arctangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"number",detail:"The tangent of the angle you want."}}},ATAN2:{description:"Returns the arctangent from x- and y-coordinates.",abstract:"Returns the arctangent from x- and y-coordinates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"x_num",detail:"The x-coordinate of the point."},yNum:{name:"y_num",detail:"The y-coordinate of the point."}}},ATANH:{description:"Returns the inverse hyperbolic tangent of a number.",abstract:"Returns the inverse hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"number",detail:"Any real number between 1 and -1."}}},BASE:{description:"Converts a number into a text representation with the given radix (base)",abstract:"Converts a number into a text representation with the given radix (base)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"number",detail:"The number that you want to convert. Must be an integer greater than or equal to 0 and less than 2^53."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."},minLength:{name:"min_length",detail:"The minimum length of the returned string. Must be an integer greater than or equal to 0."}}},CEILING:{description:"Rounds a number to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},CEILING_MATH:{description:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},CEILING_PRECISE:{description:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",abstract:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},COMBIN:{description:"Returns the number of combinations for a given number of objects",abstract:"Returns the number of combinations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COMBINA:{description:"Returns the number of combinations with repetitions for a given number of items",abstract:"Returns the number of combinations with repetitions for a given number of items",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COS:{description:"Returns the cosine of a number.",abstract:"Returns the cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosine."}}},COSH:{description:"Returns the hyperbolic cosine of a number",abstract:"Returns the hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cosine."}}},COT:{description:"Returns the cotangent of an angle",abstract:"Returns the cotangent of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cotangent."}}},COTH:{description:"Returns the hyperbolic cotangent of a number",abstract:"Returns the hyperbolic cotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cotangent."}}},CSC:{description:"Returns the cosecant of an angle",abstract:"Returns the cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosecant."}}},CSCH:{description:"Returns the hyperbolic cosecant of an angle",abstract:"Returns the hyperbolic cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the hyperbolic cosecant."}}},DECIMAL:{description:"Converts a text representation of a number in a given base into a decimal number",abstract:"Converts a text representation of a number in a given base into a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"text",detail:"The string length of Text must be less than or equal to 255 characters."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."}}},DEGREES:{description:"Converts radians to degrees",abstract:"Converts radians to degrees",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"angle",detail:"The angle in radians that you want to convert."}}},EVEN:{description:"Rounds a number up to the nearest even integer",abstract:"Rounds a number up to the nearest even integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},EXP:{description:"Returns e raised to the power of a given number",abstract:"Returns e raised to the power of a given number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"number",detail:"The exponent applied to the base e."}}},FACT:{description:"Returns the factorial of a number",abstract:"Returns the factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the factorial. If number is not an integer, it is truncated."}}},FACTDOUBLE:{description:"Returns the double factorial of a number",abstract:"Returns the double factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the double factorial. If number is not an integer, it is truncated."}}},FLOOR:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},FLOOR_MATH:{description:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},FLOOR_PRECISE:{description:"Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",abstract:"Rounds a number down to the nearest integer or to the nearest multiple of significance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},GCD:{description:"Returns the greatest common divisor",abstract:"Returns the greatest common divisor",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the greatest common divisor, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose greatest common divisor is to be found. Up to 255 numbers can be specified in this way."}}},INT:{description:"Rounds a number down to the nearest integer",abstract:"Rounds a number down to the nearest integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"number",detail:"The real number you want to round down to an integer."}}},ISO_CEILING:{description:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",abstract:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LCM:{description:"Returns the least common multiple",abstract:"Returns the least common multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the least common multiple, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose least common multiple is to be found. Up to 255 numbers can be specified in this way."}}},LET:{description:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",abstract:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LN:{description:"Returns the natural logarithm of a number",abstract:"Returns the natural logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the natural logarithm."}}},LOG:{description:"Returns the logarithm of a number to a specified base",abstract:"Returns the logarithm of a number to a specified base",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the logarithm."},base:{name:"base",detail:"The base of the logarithm. If base is omitted, it is assumed to be 10."}}},LOG10:{description:"Returns the base-10 logarithm of a number",abstract:"Returns the base-10 logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the base-10 logarithm."}}},MDETERM:{description:"Returns the matrix determinant of an array",abstract:"Returns the matrix determinant of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MINVERSE:{description:"Returns the matrix inverse of an array",abstract:"Returns the matrix inverse of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MMULT:{description:"Returns the matrix product of two arrays",abstract:"Returns the matrix product of two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"array1",detail:"The arrays you want to multiply."},array2:{name:"array2",detail:"The arrays you want to multiply."}}},MOD:{description:"Returns the remainder after number is divided by divisor. The result has the same sign as divisor.",abstract:"Returns the remainder from division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"number",detail:"The number for which you want to find the remainder."},divisor:{name:"divisor",detail:"The number by which you want to divide number"}}},MROUND:{description:"Returns a number rounded to the desired multiple",abstract:"Returns a number rounded to the desired multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"number",detail:"The value to round."},multiple:{name:"multiple",detail:"The multiple to which you want to round number."}}},MULTINOMIAL:{description:"Returns the multinomial of a set of numbers",abstract:"Returns the multinomial of a set of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"number1",detail:"The first value or range to use in the calculation."},number2:{name:"number2",detail:"Additional values ​​or ranges to use in calculations."}}},MUNIT:{description:"Returns the unit matrix or the specified dimension",abstract:"Returns the unit matrix or the specified dimension",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"dimension",detail:"Dimension is an integer specifying the dimension of the unit matrix that you want to return. It returns an array. The dimension has to be greater than zero."}}},ODD:{description:"Rounds a number up to the nearest odd integer",abstract:"Rounds a number up to the nearest odd integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},PI:{description:"Returns the value of pi",abstract:"Returns the value of pi",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"Returns the result of a number raised to a power.",abstract:"Returns the result of a number raised to a power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"number",detail:"The base number. It can be any real number."},power:{name:"power",detail:"The exponent to which the base number is raised."}}},PRODUCT:{description:"Multiplies all the numbers given as arguments and returns the product.",abstract:"Multiplies its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"number1",detail:"The first number or range that you want to multiply."},number2:{name:"number2",detail:"Additional numbers or ranges that you want to multiply, up to a maximum of 255 arguments."}}},QUOTIENT:{description:"Returns the integer portion of a division",abstract:"Returns the integer portion of a division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"numerator",detail:"The dividend."},denominator:{name:"denominator",detail:"The divisor."}}},RADIANS:{description:"Converts degrees to radians",abstract:"Converts degrees to radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"angle",detail:"An angle in degrees that you want to convert."}}},RAND:{description:"Returns a random number between 0 and 1",abstract:"Returns a random number between 0 and 1",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",abstract:"Returns an array of random numbers between 0 and 1.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to be returned"},columns:{name:"columns",detail:"The number of columns to be returned"},min:{name:"min",detail:"The minimum number you would like returned"},max:{name:"max",detail:"The maximum number you would like returned"},wholeNumber:{name:"whole_number",detail:"Return a whole number or a decimal value"}}},RANDBETWEEN:{description:"Returns a random number between the numbers you specify",abstract:"Returns a random number between the numbers you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"bottom",detail:"The smallest integer RANDBETWEEN will return."},top:{name:"top",detail:"The largest integer RANDBETWEEN will return."}}},ROMAN:{description:"Converts an Arabic numeral to Roman, as text",abstract:"Converts an Arabic numeral to Roman, as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"number",detail:"The Arabic numeral you want converted."},form:{name:"form",detail:"A number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases."}}},ROUND:{description:"Rounds a number to a specified number of digits",abstract:"Rounds a number to a specified number of digits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDBANK:{description:"Rounds a number in banker's rounding",abstract:"Rounds a number in banker's rounding",links:[{title:"Instruction",url:""}],functionParameter:{number:{name:"number",detail:"The number that you want to round in banker's rounding."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round in banker's rounding."}}},ROUNDDOWN:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDUP:{description:"Rounds a number up, away from zero",abstract:"Rounds a number up, away from zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},SEC:{description:"Returns the secant of an angle",abstract:"Returns the secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the secant."}}},SECH:{description:"Returns the hyperbolic secant of an angle",abstract:"Returns the hyperbolic secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the hyperbolic secant."}}},SERIESSUM:{description:"Returns the sum of a power series based on the formula",abstract:"Returns the sum of a power series based on the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"The input value to the power series."},n:{name:"n",detail:"The initial power to which you want to raise x."},m:{name:"m",detail:"The step by which to increase n for each term in the series."},coefficients:{name:"coefficients",detail:"A set of coefficients by which each successive power of x is multiplied."}}},SEQUENCE:{description:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",abstract:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to return."},columns:{name:"columns",detail:"The number of columns to return."},start:{name:"start",detail:"The first number in the sequence."},step:{name:"step",detail:"The amount to increment each subsequent value in the array."}}},SIGN:{description:"Returns the sign of a number",abstract:"Returns the sign of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SIN:{description:"Returns the sine of the given angle",abstract:"Returns the sine of the given angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the sine."}}},SINH:{description:"Returns the hyperbolic sine of a number",abstract:"Returns the hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SQRT:{description:"Returns a positive square root",abstract:"Returns a positive square root",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"number",detail:"The number for which you want the square root."}}},SQRTPI:{description:"Returns the square root of (number * pi)",abstract:"Returns the square root of (number * pi)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"number",detail:"The number by which pi is multiplied."}}},SUBTOTAL:{description:"Returns a subtotal in a list or database.",abstract:"Returns a subtotal in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"function_num",detail:"The number 1-11 or 101-111 that specifies the function to use for the subtotal. 1-11 includes manually-hidden rows, while 101-111 excludes them; filtered-out cells are always excluded."},ref1:{name:"ref1",detail:"The first named range or reference for which you want the subtotal."},ref2:{name:"ref2",detail:"Named ranges or references 2 to 254 for which you want the subtotal."}}},SUM:{description:"You can add individual values, cell references or ranges or a mix of all three.",abstract:"Adds its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"Number 1",detail:"The first number you want to add. The number can be like 4, a cell reference like B6, or a cell range like B2:B8."},number2:{name:"Number 2",detail:"This is the second number you want to add. You can specify up to 255 numbers in this way."}}},SUMIF:{description:"Sum the values in a range that meet criteria that you specify.",abstract:"Adds the cells specified by a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"range",detail:"The range of cells that you want evaluated by criteria."},criteria:{name:"criteria",detail:"The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. Wildcard characters can be included - a question mark (?) to match any single character, an asterisk (*) to match any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character."},sumRange:{name:"sum_range",detail:"The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied)."}}},SUMIFS:{description:"Adds all of its arguments that meet multiple criteria.",abstract:"Adds all of its arguments that meet multiple criteria.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"sum_range",detail:"The range of cells to sum."},criteriaRange1:{name:"criteria_range1 ",detail:"The range that is tested using criteria1. criteria_range1 and criteria1 set up a search pair whereby a range is searched for specific criteria. Once items in the range are found, their corresponding values in sum_range are added."},criteria1:{name:"criteria1",detail:'The criteria that defines which cells in criteria_range1 will be added. For example, criteria can be entered as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 range pairs."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria pairs."}}},SUMPRODUCT:{description:"Returns the sum of the products of corresponding array components",abstract:"Returns the sum of the products of corresponding array components",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"array",detail:"The first array argument whose components you want to multiply and then add."},array2:{name:"array",detail:"Array arguments 2 to 255 whose components you want to multiply and then add."}}},SUMSQ:{description:"Returns the sum of the squares of the arguments",abstract:"Returns the sum of the squares of the arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"number1",detail:"To square and find the first number, you can also use a single array or a reference to an array instead of comma-separated parameters."},number2:{name:"number2",detail:"The second number to be squared and summed. Up to 255 numbers can be specified in this way."}}},SUMX2MY2:{description:"Returns the sum of the difference of squares of corresponding values in two arrays",abstract:"Returns the sum of the difference of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMX2PY2:{description:"Returns the sum of the sum of squares of corresponding values in two arrays",abstract:"Returns the sum of the sum of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMXMY2:{description:"Returns the sum of squares of differences of corresponding values in two arrays",abstract:"Returns the sum of squares of differences of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},TAN:{description:"Returns the tangent of a number.",abstract:"Returns the tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the tangent."}}},TANH:{description:"Returns the hyperbolic tangent of a number.",abstract:"Returns the hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},TRUNC:{description:"Truncates a number to an integer",abstract:"Truncates a number to an integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"number",detail:"The number you want to truncate."},numDigits:{name:"num_digits",detail:"A number specifying the precision of the truncation. The default value for num_digits is 0 (zero)."}}}},...{AVEDEV:{description:"Returns the average of the absolute deviations of data points from their mean.",abstract:"Returns the average of the absolute deviations of data points from their mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE:{description:"Returns the average (arithmetic mean) of the arguments.",abstract:"Returns the average of its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE_WEIGHTED:{description:"Finds the weighted average of a set of values, given the values and the corresponding weights.",abstract:"Finds the weighted average of a set of values, given the values and the corresponding weights.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"values",detail:"要计算平均数的值。"},weights:{name:"weights",detail:"要应用的相应权重列表。"},additionalValues:{name:"additional_values",detail:"要计算平均数的其他值。"},additionalWeights:{name:"additional_weights",detail:"要应用的其他权重。"}}},AVERAGEA:{description:"Returns the average of its arguments, including numbers, text, and logical values.",abstract:"Returns the average of its arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range for which you want the average."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGEIF:{description:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria.",abstract:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteria:{name:"criteria",detail:'The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.'},averageRange:{name:"average_range",detail:"The actual set of cells to average. If omitted, range is used."}}},AVERAGEIFS:{description:"Returns the average (arithmetic mean) of all cells that meet multiple criteria.",abstract:"Returns the average (arithmetic mean) of all cells that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"average_range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:'Used to define the cells for which the average will be calculated. For example, the criteria can be expressed as 32, "32", ">32", "apple", or B4'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},BETA_DIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETA_INV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOM_DIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},BINOM_DIST_RANGE:{description:"Returns the probability of a trial result using a binomial distribution",abstract:"Returns the probability of a trial result using a binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},numberS:{name:"number_s",detail:"The number of successes in trials."},numberS2:{name:"number_s2",detail:"If provided, returns the probability that the number of successful trials will fall between number_s and number_s2."}}},BINOM_INV:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},CHISQ_DIST:{description:"Returns the left-tailed probability of the chi-squared distribution.",abstract:"Returns the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHISQ_DIST_RT:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV:{description:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV_RT:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_TEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE_NORM:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CONFIDENCE_T:{description:"Returns the confidence interval for a population mean, using a Student's t distribution",abstract:"Returns the confidence interval for a population mean, using a Student's t distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CORREL:{description:"Returns the correlation coefficient between two data sets",abstract:"Returns the correlation coefficient between two data sets",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COUNT:{description:"Counts the number of cells that contain numbers, and counts numbers within the list of arguments.",abstract:"Counts how many numbers are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"value 1",detail:"The first item, cell reference, or range within which you want to count numbers."},value2:{name:"value 2",detail:"Up to 255 additional items, cell references, or ranges within which you want to count numbers."}}},COUNTA:{description:`Counts cells containing any type of information, including error values and empty text ("") + If you do not need to count logical values, text, or error values`,abstract:"Counts how many values are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"value1",detail:"Required. The first argument representing the values that you want to count."},number2:{name:"value2",detail:"Optional. Additional arguments representing the values that you want to count, up to a maximum of 255 arguments."}}},COUNTBLANK:{description:"Counts the number of blank cells within a range.",abstract:"Counts the number of blank cells within a range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"range",detail:"The range from which you want to count the blank cells."}}},COUNTIF:{description:"Counts the number of cells within a range that meet the given criteria.",abstract:"Counts the number of cells within a range that meet the given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"range",detail:"The group of cells you want to count. Range can contain numbers, arrays, a named range, or references that contain numbers. Blank and text values are ignored."},criteria:{name:"criteria",detail:`A number, expression, cell reference, or text string that determines which cells will be counted. +For example, you can use a number like 32, a comparison like ">32", a cell like B4, or a word like "apples". +COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple criteria.`}}},COUNTIFS:{description:"Counts the number of cells within a range that meet multiple criteria.",abstract:"Counts the number of cells within a range that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"criteria_range1",detail:"The first range in which to evaluate the associated criteria."},criteria1:{name:"criteria1",detail:'The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},COVARIANCE_P:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COVARIANCE_S:{description:"Returns the sample covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns the sample covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},DEVSQ:{description:"Returns the sum of squares of deviations",abstract:"Returns the sum of squares of deviations",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"number1",detail:"The fist argument for which you want to calculate the sum of squared deviations."},number2:{name:"number2",detail:"The 2 to 255 arguments for which you want to calculate the sum of squared deviations."}}},EXPON_DIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST:{description:"Returns the F probability distribution",abstract:"Returns the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST_RT:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV:{description:"Returns the inverse of the F probability distribution",abstract:"Returns the inverse of the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV_RT:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_TEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},FISHER:{description:"Returns the Fisher transformation",abstract:"Returns the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"x",detail:"A numeric value for which you want the transformation."}}},FISHERINV:{description:"Returns the inverse of the Fisher transformation",abstract:"Returns the inverse of the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"y",detail:"The value for which you want to perform the inverse of the transformation."}}},FORECAST:{description:"Returns a value along a linear trend",abstract:"Returns a value along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FORECAST_ETS:{description:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",abstract:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_CONFINT:{description:"Returns a confidence interval for the forecast value at the specified target date",abstract:"Returns a confidence interval for the forecast value at the specified target date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_SEASONALITY:{description:"Returns the length of the repetitive pattern Excel detects for the specified time series",abstract:"Returns the length of the repetitive pattern Excel detects for the specified time series",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_STAT:{description:"Returns a statistical value as a result of time series forecasting",abstract:"Returns a statistical value as a result of time series forecasting",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_LINEAR:{description:"Returns a future value based on existing values",abstract:"Returns a future value based on existing values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FREQUENCY:{description:"Returns a frequency distribution as a vertical array",abstract:"Returns a frequency distribution as a vertical array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"data_array",detail:"An array of or reference to a set of values for which you want to count frequencies. If data_array contains no values, FREQUENCY returns an array of zeros."},binsArray:{name:"bins_array",detail:"An array of or reference to intervals into which you want to group the values in data_array. If bins_array contains no values, FREQUENCY returns the number of elements in data_array."}}},GAMMA:{description:"Returns the Gamma function value",abstract:"Returns the Gamma function value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"number",detail:"Input value to the gamma function."}}},GAMMA_DIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMA_INV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},GAMMALN:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN."}}},GAMMALN_PRECISE:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN.PRECISE."}}},GAUSS:{description:"Returns 0.5 less than the standard normal cumulative distribution",abstract:"Returns 0.5 less than the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},GEOMEAN:{description:"Returns the geometric mean",abstract:"Returns the geometric mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the geometric mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the geometric mean, up to a maximum of 255."}}},GROWTH:{description:"Returns values along an exponential trend",abstract:"Returns values along an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},newXs:{name:"new_x's",detail:"Are new x-values for which you want GROWTH to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."}}},HARMEAN:{description:"Returns the harmonic mean",abstract:"Returns the harmonic mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the harmonic mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the harmonic mean, up to a maximum of 255."}}},HYPGEOM_DIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},INTERCEPT:{description:"Returns the intercept of the linear regression line",abstract:"Returns the intercept of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},KURT:{description:"Returns the kurtosis of a data set",abstract:"Returns the kurtosis of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the kurtosis."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the kurtosis, up to a maximum of 255."}}},LARGE:{description:"Returns the k-th largest value in a data set",abstract:"Returns the k-th largest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th largest value."},k:{name:"k",detail:"The position (from the largest) in the array or cell range of data to return."}}},LINEST:{description:"Returns the parameters of a linear trend",abstract:"Returns the parameters of a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGEST:{description:"Returns the parameters of an exponential trend",abstract:"Returns the parameters of an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGNORM_DIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGNORM_INV:{description:"Returns the inverse of the lognormal cumulative distribution",abstract:"Returns the inverse of the lognormal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},MARGINOFERROR:{description:"Calculates the margin of error from a range of values and a confidence level.",abstract:"Calculates the margin of error from a range of values and a confidence level.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"range",detail:"The range of values used to calculate the margin of error."},confidence:{name:"confidence",detail:"The desired confidence level between (0, 1)."}}},MAX:{description:"Returns the largest value in a set of values.",abstract:"Returns the maximum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the maximum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the maximum value from, up to a maximum of 255."}}},MAXA:{description:"Returns the maximum value in a list of arguments, including numbers, text, and logical values.",abstract:"Returns the maximum value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"value1",detail:"The first number argument for which you want to find the largest value."},value2:{name:"value2",detail:"Number arguments 2 to 255 for which you want to find the largest value."}}},MAXIFS:{description:"Returns the maximum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the maximum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"sum_range",detail:"The range of cells to max."},criteriaRange1:{name:"criteria_range1 ",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as maximum. "},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 ranges."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MEDIAN:{description:"Returns the median of the given numbers",abstract:"Returns the median of the given numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the given numbers."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the given numbers, up to a maximum of 255."}}},MIN:{description:"Returns the smallest number in a set of values.",abstract:"Returns the minimum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the minimum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINA:{description:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",abstract:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range to calculate the minimum value from."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINIFS:{description:"Returns the minimum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the minimum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"min_range",detail:"The actual range of cells in which the minimum value will be determined."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as minimum. The same set of criteria works for the MAXIFS, SUMIFS and AVERAGEIFS functions."},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MODE_MULT:{description:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",abstract:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},MODE_SNGL:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOM_DIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_DIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_INV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORM_S_DIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_S_INV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PEARSON:{description:"Returns the Pearson product moment correlation coefficient",abstract:"Returns the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},PERCENTILE_EXC:{description:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",abstract:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Excludes 0 and 1)."}}},PERCENTILE_INC:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK_EXC:{description:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.EXC uses three digits (0.xxx)."}}},PERCENTRANK_INC:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},PERMUT:{description:"Returns the number of permutations for a given number of objects",abstract:"Returns the number of permutations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PERMUTATIONA:{description:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",abstract:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PHI:{description:"Returns the value of the density function for a standard normal distribution",abstract:"Returns the value of the density function for a standard normal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X is the number for which you want the density of the standard normal distribution."}}},POISSON_DIST:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},PROB:{description:"Returns the probability that values in a range are between two limits",abstract:"Returns the probability that values in a range are between two limits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"x_range",detail:"The range of numeric values of x with which there are associated probabilities."},probRange:{name:"prob_range",detail:"A set of probabilities associated with values in x_range."},lowerLimit:{name:"lower_limit",detail:"The lower bound on the value for which you want a probability."},upperLimit:{name:"upper_limit",detail:"The upper bound on the value for which you want a probability."}}},QUARTILE_EXC:{description:"Returns the quartile of a data set (Excludes 0 and 1)",abstract:"Returns the quartile of a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},QUARTILE_INC:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK_AVG:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RANK_EQ:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RSQ:{description:"Returns the square of the Pearson product moment correlation coefficient",abstract:"Returns the square of the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},SKEW:{description:"Returns the skewness of a distribution",abstract:"Returns the skewness of a distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SKEW_P:{description:"Returns the skewness of a distribution based on a population",abstract:"Returns the skewness of a distribution based on a population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SLOPE:{description:"Returns the slope of the linear regression line",abstract:"Returns the slope of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},SMALL:{description:"Returns the k-th smallest value in a data set",abstract:"Returns the k-th smallest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th smallest value."},k:{name:"k",detail:"The position (from the smallest) in the array or cell range of data to return."}}},STANDARDIZE:{description:"Returns a normalized value",abstract:"Returns a normalized value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"The value you want to normalize."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},STDEV_P:{description:"Calculates standard deviation based on the entire population given as arguments (ignores logical values and text).",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEV_S:{description:"Estimates standard deviation based on a sample (ignores logical values and text in the sample).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVA:{description:"Estimates standard deviation based on a sample, including numbers, text, and logical values.",abstract:"Estimates standard deviation based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVPA:{description:"Calculates standard deviation based on the entire population given as arguments, including text and logical values.",abstract:"Calculates standard deviation based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STEYX:{description:"Returns the standard error of the predicted y-value for each x in the regression",abstract:"Returns the standard error of the predicted y-value for each x in the regression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},T_DIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},T_DIST_2T:{description:"Returns the probability for the Student t-distribution (two-tailed)",abstract:"Returns the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_DIST_RT:{description:"Returns the probability for the Student t-distribution (right-tailed)",abstract:"Returns the probability for the Student t-distribution (right-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV:{description:"Returns the inverse of the probability for the Student t-distribution",abstract:"Returns the inverse of the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV_2T:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_TEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, T.TEST uses the one-tailed distribution. If tails = 2, T.TEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},TREND:{description:"Returns values along a linear trend",abstract:"Returns values along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},newXs:{name:"new_x's",detail:"Are new x-values for which you want TREND to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."}}},TRIMMEAN:{description:"Returns the mean of the interior of a data set",abstract:"Returns the mean of the interior of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"array",detail:"The array or range of values to trim and average."},percent:{name:"percent",detail:"The fractional number of data points to exclude from the calculation."}}},VAR_P:{description:"Calculates variance based on the entire population (ignores logical values and text in the population).",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population."}}},VAR_S:{description:"Estimates variance based on a sample (ignores logical values and text in the sample).",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population."}}},VARA:{description:"Estimates variance based on a sample, including numbers, text, and logical values",abstract:"Estimates variance based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"value1",detail:"The value number argument corresponding to a sample of a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population."}}},VARPA:{description:"Calculates variance based on the entire population, including numbers, text, and logical values",abstract:"Calculates variance based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population."}}},WEIBULL_DIST:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},Z_TEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ADDRESS:{description:`Obtain the address of a cell in a worksheet, given specified row and column numbers. For example, ADDRESS(2,3) returns $C$2. As another example, ADDRESS(77,300) returns $KN$77. You can use other functions, such as the ROW and COLUMN functions, to provide the row and column number arguments for the ADDRESS function. + + `,abstract:"Returns a reference as text to a single cell in a worksheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"row number",detail:"A numeric value that specifies the row number to use in the cell reference."},column_num:{name:"column number",detail:"A numeric value that specifies the column number to use in the cell reference."},abs_num:{name:"type of reference",detail:"A numeric value that specifies the type of reference to return."},a1:{name:"style of reference",detail:"A logical value that specifies the A1 or R1C1 reference style. In A1 style, columns are labeled alphabetically, and rows are labeled numerically. In R1C1 reference style, both columns and rows are labeled numerically. If the A1 argument is TRUE or omitted, the ADDRESS function returns an A1-style reference; if FALSE, the ADDRESS function returns an R1C1-style reference."},sheet_text:{name:"worksheet name",detail:'A text value that specifies the name of the worksheet to be used as the external reference. For example, the formula =ADDRESS(1,1,,,"Sheet2") returns Sheet2!$A$1. If the sheet_text argument is omitted, no sheet name is used, and the address returned by the function refers to a cell on the current sheet.'}}},AREAS:{description:"Returns the number of areas in a reference",abstract:"Returns the number of areas in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells and can refer to multiple areas."}}},CHOOSE:{description:"Chooses a value from a list of values.",abstract:"Chooses a value from a list of values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"index_num",detail:`Specifies which value argument is selected. Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number between 1 and 254. +If index_num is 1, CHOOSE returns value1; if it is 2, CHOOSE returns value2; and so on. +If index_num is less than 1 or greater than the number of the last value in the list, CHOOSE returns the #VALUE! error value. +If index_num is a fraction, it is truncated to the lowest integer before being used.`},value1:{name:"value1",detail:"CHOOSE selects a value or an action to perform based on index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or text."},value2:{name:"value2",detail:"1 to 254 value arguments."}}},CHOOSECOLS:{description:"Returns the specified columns from an array",abstract:"Returns the specified columns from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"array",detail:"The array containing the columns to be returned in the new array."},colNum1:{name:"col_num1",detail:"The first column to be returned."},colNum2:{name:"col_num2",detail:"Additional columns to be returned."}}},CHOOSEROWS:{description:"Returns the specified rows from an array",abstract:"Returns the specified rows from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"array",detail:"The array containing the rows to be returned in the new array."},rowNum1:{name:"row_num1",detail:"The first row number to be returned."},rowNum2:{name:"row_num2",detail:"Additional row numbers to be returned."}}},COLUMN:{description:"Returns the column number of the given cell reference.",abstract:"Returns the column number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want to return the column number."}}},COLUMNS:{description:"Returns the number of columns in an array or reference.",abstract:"Returns the number of columns in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"array",detail:"An array or array formula, or a reference to a range of cells for which you want the number of columns."}}},DROP:{description:"Excludes a specified number of rows or columns from the start or end of an array",abstract:"Excludes a specified number of rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"array",detail:"The array from which to drop rows or columns."},rows:{name:"rows",detail:"The number of rows to drop. A negative value drops from the end of the array."},columns:{name:"columns",detail:"The number of columns to exclude. A negative value drops from the end of the array."}}},EXPAND:{description:"Expands or pads an array to specified row and column dimensions",abstract:"Expands or pads an array to specified row and column dimensions",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"array",detail:"The array to expand."},rows:{name:"rows",detail:"The number of rows in the expanded array. If missing, rows will not be expanded."},columns:{name:"columns",detail:"The number of columns in the expanded array. If missing, columns will not be expanded."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},FILTER:{description:"Filters a range of data based on criteria you define",abstract:"Filters a range of data based on criteria you define",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"array",detail:"The range or array to filter."},include:{name:"include",detail:"An array of Boolean values ​​where TRUE indicates that a row or column is to be retained."},ifEmpty:{name:"if_empty",detail:"If no items are reserved, return."}}},FORMULATEXT:{description:"Returns the formula at the given reference as text",abstract:"Returns the formula at the given reference as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells."}}},GETPIVOTDATA:{description:"Returns data stored in a PivotTable report",abstract:"Returns data stored in a PivotTable report",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},HLOOKUP:{description:"Looks in the top row of an array and returns the value of the indicated cell",abstract:"Looks in the top row of an array and returns the value of the indicated cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to be found in the first row of the table. Lookup_value can be a value, a reference, or a text string."},tableArray:{name:"table_array",detail:"A table of information in which data is looked up. Use a reference to a range or a range name."},rowIndexNum:{name:"row_index_num",detail:"The row number in table_array from which the matching value will be returned. A row_index_num of 1 returns the first row value in table_array, a row_index_num of 2 returns the second row value in table_array, and so on. "},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match."}}},HSTACK:{description:"Appends arrays horizontally and in sequence to return a larger array",abstract:"Appends arrays horizontally and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},HYPERLINK:{description:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",abstract:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hyperlink-function-333c7ce6-c5ae-4164-9c47-7de9b76f577f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},IMAGE:{description:"Returns an image from a given source",abstract:"Returns an image from a given source",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},INDEX:{description:"Returns the reference of the cell at the intersection of a particular row and column. If the reference is made up of non-adjacent selections, you can pick the selection to look in.",abstract:"Uses an index to choose a value from a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"reference",detail:"A reference to one or more cell ranges."},rowNum:{name:"row_num",detail:"The number of the row in reference from which to return a reference."},columnNum:{name:"column_num",detail:"The number of the column in reference from which to return a reference."},areaNum:{name:"area_num",detail:"Selects a range in reference from which to return the intersection of row_num and column_num."}}},INDIRECT:{description:"Returns the reference specified by a text string. References are immediately evaluated to display their contents.",abstract:"Returns a reference indicated by a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"ref_text",detail:"A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. "},a1:{name:"a1",detail:"A logical value that specifies what type of reference is contained in the cell ref_text."}}},LOOKUP:{description:"When you need to look in a single row or column and find a value from the same position in a second row or column",abstract:"Looks up values in a vector or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"A value that LOOKUP searches for in the first vector. Lookup_value can be a number, text, a logical value, or a name or reference that refers to a value."},lookupVectorOrArray:{name:"lookup_vectorOrArray",detail:"A range that contains only one row or one column"},resultVector:{name:"result_vector",detail:"A range that contains only one row or column. The result_vector argument must be the same size as lookup_vector."}}},MATCH:{description:"The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.",abstract:"Looks up values in a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value that you want to match in lookup_array."},lookupArray:{name:"lookup_array",detail:"The range of cells being searched."},matchType:{name:"match_type",detail:"The number -1, 0, or 1."}}},OFFSET:{description:"Returns a reference offset from a given reference",abstract:"Returns a reference offset from a given reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"reference",detail:"The reference from which you want to base the offset."},rows:{name:"rows",detail:"The number of rows, up or down, that you want the upper-left cell to refer to."},cols:{name:"columns",detail:"The number of columns, to the left or right, that you want the upper-left cell of the result to refer to."},height:{name:"height",detail:"The height, in number of rows, that you want the returned reference to be. Height must be a positive number."},width:{name:"width",detail:"The width, in number of columns, that you want the returned reference to be. Width must be a positive number."}}},ROW:{description:"Returns the row number of a reference",abstract:"Returns the row number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want the row number."}}},ROWS:{description:"Returns the number of rows in an array or reference.",abstract:"Returns the number of rows in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"array",detail:"An array, an array formula, or a reference to a range of cells for which you want the number of rows."}}},RTD:{description:"Retrieves real-time data from a program that supports COM automation",abstract:"Retrieves real-time data from a program that supports COM automation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},SORT:{description:"Sorts the contents of a range or array",abstract:"Sorts the contents of a range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},sortIndex:{name:"sort_index",detail:"A number indicating the sort order (by row or by column)."},sortOrder:{name:"sort_order",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byCol:{name:"by_col",detail:"Logical value indicating the desired sort direction; FALSE sorts by rows (default), TRUE sorts by columns."}}},SORTBY:{description:"Sorts the contents of a range or array based on the values in a corresponding range or array",abstract:"Sorts the contents of a range or array based on the values in a corresponding range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},byArray1:{name:"by_array1",detail:"The range or array to sort based on."},sortOrder1:{name:"sort_order1",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byArray2:{name:"by_array2",detail:"The range or array to sort based on."},sortOrder2:{name:"sort_order2",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."}}},TAKE:{description:"Returns a specified number of contiguous rows or columns from the start or end of an array",abstract:"Returns a specified number of contiguous rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"array",detail:"The array from which to take rows or columns."},rows:{name:"rows",detail:"The number of rows to take. A negative value takes from the end of the array."},columns:{name:"columns",detail:"The number of columns to take. A negative value takes from the end of the array."}}},TOCOL:{description:"Returns the array in a single column",abstract:"Returns the array in a single column",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a column."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TOROW:{description:"Returns the array in a single row",abstract:"Returns the array in a single row",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a row."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TRANSPOSE:{description:"Returns the transpose of an array",abstract:"Returns the transpose of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"array",detail:"A range of cells or an array in a worksheet."}}},UNIQUE:{description:"Returns a list of unique values in a list or range",abstract:"Returns a list of unique values in a list or range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"array",detail:"The range or array from which unique rows or columns are returned."},byCol:{name:"by_col",detail:"Is a logical value: compares rows to each other and returns unique values ​​= FALSE, or is omitted; compares columns to each other and returns unique values ​​= TRUE."},exactlyOnce:{name:"exactly_once",detail:"Is a logical value: returns rows or columns from the array that appear only once = TRUE; returns all distinct rows or columns from the array = FALSE, or has been omitted."}}},VLOOKUP:{description:"Use VLOOKUP when you need to find things in a table or a range by row. For example, look up a price of an automotive part by the part number, or find an employee name based on their employee ID.",abstract:"Looks in the first column of an array and moves across the row to return the value of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value you want to look up. The value you want to look up must be in the first column of the range of cells you specify in the table_array argument."},tableArray:{name:"table_array",detail:"The range of cells in which the VLOOKUP will search for the lookup_value and the return value. You can use a named range or a table, and you can use names in the argument instead of cell references. "},colIndexNum:{name:"col_index_num",detail:"The column number (starting with 1 for the left-most column of table_array) that contains the return value."},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want VLOOKUP to find an approximate or an exact match: Approximate match - 1/TRUE, Exact match - 0/FALSE"}}},VSTACK:{description:"Appends arrays vertically and in sequence to return a larger array",abstract:"Appends arrays vertically and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},WRAPCOLS:{description:"Wraps the provided row or column of values by columns after a specified number of elements",abstract:"Wraps the provided row or column of values by columns after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each column."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},WRAPROWS:{description:"Wraps the provided row or column of values by rows after a specified number of elements",abstract:"Wraps the provided row or column of values by rows after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each row."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},XLOOKUP:{description:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",abstract:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to search for, If omitted, XLOOKUP returns blank cells it finds in lookup_array. "},lookupArray:{name:"lookup_array",detail:"The array or range to search"},returnArray:{name:"return_array",detail:"The array or range to return"},ifNotFound:{name:"if_not_found",detail:"Where a valid match is not found, return the [if_not_found] text you supply. If a valid match is not found, and [if_not_found] is missing, #N/A is returned."},matchMode:{name:"match_mode",detail:"Specify the match type: 0 - Exact match. If none found, return #N/A. This is the default. -1 - Exact match. If none found, return the next smaller item. 1 - Exact match. If none found, return the next larger item. 2 - A wildcard match where *, ?, and ~ have special meaning."},searchMode:{name:"search_mode",detail:"Specify the search mode to use: 1 - Perform a search starting at the first item. This is the default. -1 - Perform a reverse search starting at the last item. 2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. -2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned."}}},XMATCH:{description:"Searches for a specified item in an array or range of cells, and then returns the item's relative position.",abstract:"Returns the relative position of an item in an array or range of cells.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The lookup value"},lookupArray:{name:"lookup_array",detail:"The array or range to search"},matchMode:{name:"match_mode",detail:`Specify the match type: +0 - Exact match (default) +-1 - Exact match or next smallest item +1 - Exact match or next largest item +2 - A wildcard match where *, ?, and ~ have special meaning.`},searchMode:{name:"search_mode",detail:`Specify the search type: +1 - Search first-to-last (default) +-1 - Search last-to-first (reverse search). +2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. +-2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned.`}}}},...{DAVERAGE:{description:"Returns the average of selected database entries",abstract:"Returns the average of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNT:{description:"Counts the cells that contain numbers in a database",abstract:"Counts the cells that contain numbers in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNTA:{description:"Counts nonblank cells in a database",abstract:"Counts nonblank cells in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DGET:{description:"Extracts from a database a single record that matches the specified criteria",abstract:"Extracts from a database a single record that matches the specified criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMAX:{description:"Returns the maximum value from selected database entries",abstract:"Returns the maximum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMIN:{description:"Returns the minimum value from selected database entries",abstract:"Returns the minimum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DPRODUCT:{description:"Multiplies the values in a particular field of records that match the criteria in a database",abstract:"Multiplies the values in a particular field of records that match the criteria in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEV:{description:"Estimates the standard deviation based on a sample of selected database entries",abstract:"Estimates the standard deviation based on a sample of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEVP:{description:"Calculates the standard deviation based on the entire population of selected database entries",abstract:"Calculates the standard deviation based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSUM:{description:"Adds the numbers in the field column of records in the database that match the criteria",abstract:"Adds the numbers in the field column of records in the database that match the criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVAR:{description:"Estimates variance based on a sample from selected database entries",abstract:"Estimates variance based on a sample from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVARP:{description:"Calculates variance based on the entire population of selected database entries",abstract:"Calculates variance based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}}},...{ASC:{description:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",abstract:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any full-width letters, text is not changed."}}},ARRAYTOTEXT:{description:"Returns an array of text values from any specified range",abstract:"Returns an array of text values from any specified range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"array",detail:"The array to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},BAHTTEXT:{description:"Converts a number to text, using the ß (baht) currency format",abstract:"Converts a number to text, using the ß (baht) currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"number",detail:"A number you want to convert to text, or a reference to a cell containing a number, or a formula that evaluates to a number."}}},CHAR:{description:"Returns the character specified by the code number",abstract:"Returns the character specified by the code number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"number",detail:"A number between 1 and 255 specifying which character you want. The character is from the character set used by your computer."}}},CLEAN:{description:"Removes all nonprintable characters from text",abstract:"Removes all nonprintable characters from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"text",detail:"Any worksheet information from which you want to remove nonprintable characters."}}},CODE:{description:"Returns a numeric code for the first character in a text string",abstract:"Returns a numeric code for the first character in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"text",detail:"The text for which you want the code of the first character."}}},CONCAT:{description:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",abstract:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"text1",detail:"Text item to be joined. A string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 253 text arguments for the text items. Each can be a string, or array of strings, such as a range of cells."}}},CONCATENATE:{description:"Joins several text items into one text item",abstract:"Joins several text items into one text item",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"text1",detail:"The first item to join. The item can be a text value, number, or cell reference."},text2:{name:"text2",detail:"Additional text items to join. You can have up to 255 items, up to a total of 8,192 characters."}}},DBCS:{description:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",abstract:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any half-width English letters or katakana, text is not changed."}}},DOLLAR:{description:"Converts a number to text using currency format",abstract:"Converts a number to text using currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"number",detail:"A number, a reference to a cell containing a number, or a formula that evaluates to a number."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."}}},EXACT:{description:"Checks to see if two text values are identical",abstract:"Checks to see if two text values are identical",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926"}],functionParameter:{text1:{name:"text1",detail:"The first text string."},text2:{name:"text2",detail:"The second text string."}}},FIND:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FINDB:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FIXED:{description:"Formats a number as text with a fixed number of decimals",abstract:"Formats a number as text with a fixed number of decimals",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a"}],functionParameter:{number:{name:"number",detail:"The number you want to round and convert to text."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."},noCommas:{name:"no_commas",detail:"A logical value that, if TRUE, prevents FIXED from including commas in the returned text."}}},LEFT:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want LEFT to extract."}}},LEFTB:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want LEFTB to extract, based on bytes."}}},LEN:{description:"Returns the number of characters in a text string",abstract:"Returns the number of characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LENB:{description:"Returns the number of bytes used to represent the characters in a text string.",abstract:"Returns the number of bytes used to represent the characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LOWER:{description:"Converts text to lowercase.",abstract:"Converts text to lowercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"text",detail:"The text you want to convert to lowercase."}}},MID:{description:"Returns a specific number of characters from a text string starting at the position you specify.",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want MID to extract."}}},MIDB:{description:"Returns a specific number of characters from a text string starting at the position you specify",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want MIDB to extract, based on bytes."}}},NUMBERSTRING:{description:"Convert numbers to Chinese strings",abstract:"Convert numbers to Chinese strings",links:[{title:"Instruction",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"number",detail:"The value converted to a Chinese string."},type:{name:"type",detail:`The type of the returned result. +1. Chinese lowercase +2. Chinese uppercase +3. Reading and Writing Chinese Characters`}}},NUMBERVALUE:{description:"Converts text to number in a locale-independent manner",abstract:"Converts text to number in a locale-independent manner",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"text",detail:"The text to convert to a number."},decimalSeparator:{name:"decimal_separator",detail:"The character used to separate the integer and fractional part of the result."},groupSeparator:{name:"group_separator",detail:"The character used to separate groupings of numbers."}}},PHONETIC:{description:"Extracts the phonetic (furigana) characters from a text string",abstract:"Extracts the phonetic (furigana) characters from a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},PROPER:{description:"Capitalizes the first letter in each word of a text value",abstract:"Capitalizes the first letter in each word of a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94"}],functionParameter:{text:{name:"text",detail:"Text enclosed in quotation marks, a formula that returns text, or a reference to a cell containing the text you want to partially capitalize."}}},REGEXEXTRACT:{description:"Extracts the first matching substrings according to a regular expression.",abstract:"Extracts the first matching substrings according to a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The input text."},regularExpression:{name:"regular_expression",detail:"The first part of text that matches this expression will be returned."}}},REGEXMATCH:{description:"Whether a piece of text matches a regular expression.",abstract:"Whether a piece of text matches a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text to be tested against the regular expression."},regularExpression:{name:"regular_expression",detail:"The regular expression to test the text against."}}},REGEXREPLACE:{description:"Replaces part of a text string with a different text string using regular expressions.",abstract:"Replaces part of a text string with a different text string using regular expressions.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text, a part of which will be replaced."},regularExpression:{name:"regular_expression",detail:"The regular expression. All matching instances in text will be replaced."},replacement:{name:"replacement",detail:"The text which will be inserted into the original text."}}},REPLACE:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numChars:{name:"num_chars",detail:"The number of characters in old_text that you want REPLACE to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPLACEB:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numBytes:{name:"num_bytes",detail:"The number of bytes in old_text that you want REPLACEB to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPT:{description:"Repeats text a given number of times",abstract:"Repeats text a given number of times",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061"}],functionParameter:{text:{name:"text",detail:"The text you want to repeat."},numberTimes:{name:"number_times",detail:"A positive number specifying the number of times to repeat text."}}},RIGHT:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want RIGHT to extract."}}},RIGHTB:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want RIGHTB to extract, based on bytes."}}},SEARCH:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SEARCHB:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SUBSTITUTE:{description:"Substitutes new text for old text in a text string",abstract:"Substitutes new text for old text in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332"}],functionParameter:{text:{name:"text",detail:"The text or the reference to a cell containing text for which you want to substitute characters."},oldText:{name:"old_text",detail:"The text you want to replace."},newText:{name:"new_text",detail:"The text you want to replace old_text with."},instanceNum:{name:"instance_num",detail:"Specifies which occurrence of old_text you want to replace with new_text. If you specify instance_num, only that instance of old_text is replaced. Otherwise, every occurrence of old_text in text is changed to new_text."}}},T:{description:"Converts its arguments to text",abstract:"Converts its arguments to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-function-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"value",detail:"The value you want to test."}}},TEXT:{description:"Formats a number and converts it to text",abstract:"Formats a number and converts it to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"value",detail:"A numeric value that you want to be converted into text."},formatText:{name:"format_text",detail:"A text string that defines the formatting that you want to be applied to the supplied value."}}},TEXTAFTER:{description:"Returns text that occurs after given character or string",abstract:"Returns text that occurs after given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTBEFORE:{description:"Returns text that occurs before a given character or string",abstract:"Returns text that occurs before a given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTJOIN:{description:"Text: Combines the text from multiple ranges and/or strings",abstract:"Text: Combines the text from multiple ranges and/or strings",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"delimiter",detail:"A text string, either empty, or one or more characters enclosed by double quotes, or a reference to a valid text string."},ignoreEmpty:{name:"ignore_empty",detail:"If TRUE, ignores empty cells."},text1:{name:"text1",detail:"Text item to be joined. A text string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 252 text arguments for the text items, including text1. Each can be a text string, or array of strings, such as a range of cells."}}},TEXTSPLIT:{description:"Splits text strings by using column and row delimiters",abstract:"Splits text strings by using column and row delimiters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"text",detail:"The text to split."},colDelimiter:{name:"col_delimiter",detail:"The character or string by which to split the column."},rowDelimiter:{name:"row_delimiter",detail:"The character or string on which to split the line."},ignoreEmpty:{name:"ignore_empty",detail:"Whether to ignore empty cells. The default is FALSE."},matchMode:{name:"match_mode",detail:"Searches for a delimiter match in the text. By default, a case-sensitive match is done."},padWith:{name:"pad_with",detail:"The value to use for padding. By default, #N/A is used."}}},TRIM:{description:"Removes all spaces from text except for single spaces between words.",abstract:"Removes spaces from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"text",detail:"The text from which you want spaces removed."}}},UNICHAR:{description:"Returns the Unicode character that is references by the given numeric value",abstract:"Returns the Unicode character that is references by the given numeric value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8"}],functionParameter:{number:{name:"number",detail:"Number is the Unicode number that represents the character."}}},UNICODE:{description:"Returns the number (code point) that corresponds to the first character of the text",abstract:"Returns the number (code point) that corresponds to the first character of the text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f"}],functionParameter:{text:{name:"text",detail:"Text is the character for which you want the Unicode value."}}},UPPER:{description:"Converts text to uppercase",abstract:"Converts text to uppercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"text",detail:"The text you want converted to uppercase."}}},VALUE:{description:"Converts a text argument to a number",abstract:"Converts a text argument to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2"}],functionParameter:{text:{name:"text",detail:"The text enclosed in quotation marks or a reference to a cell containing the text you want to convert."}}},VALUETOTEXT:{description:"Returns text from any specified value",abstract:"Returns text from any specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"value",detail:"The value to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},CALL:{description:"Calls a procedure in a dynamic link library or code resource",abstract:"Calls a procedure in a dynamic link library or code resource",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},EUROCONVERT:{description:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",abstract:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},REGISTER_ID:{description:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",abstract:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{AND:{description:"Returns TRUE if all of its arguments are TRUE",abstract:"Returns TRUE if all of its arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},BYCOL:{description:"Applies a LAMBDA to each column and returns an array of the results",abstract:"Applies a LAMBDA to each column and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by column."},lambda:{name:"lambda",detail:"A LAMBDA that takes a column as a single parameter and calculates one result. The LAMBDA takes a single parameter: A column from array."}}},BYROW:{description:"Applies a LAMBDA to each row and returns an array of the results",abstract:"Applies a LAMBDA to each row and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by row."},lambda:{name:"lambda",detail:"A LAMBDA that takes a row as a single parameter and calculates one result. The LAMBDA takes a single parameter: A row from array."}}},FALSE:{description:"Returns the logical value FALSE.",abstract:"Returns the logical value FALSE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"Specifies a logical test to perform",abstract:"Specifies a logical test to perform",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"logical_test",detail:"The condition you want to test."},valueIfTrue:{name:"value_if_true",detail:"The value that you want returned if the result of logical_test is TRUE."},valueIfFalse:{name:"value_if_false",detail:"The value that you want returned if the result of logical_test is FALSE."}}},IFERROR:{description:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",abstract:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for an error."},valueIfError:{name:"value_if_error",detail:"The value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!."}}},IFNA:{description:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",abstract:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for the #N/A error value."},valueIfNa:{name:"value_if_na",detail:"The value to return if the formula evaluates to the #N/A error value."}}},IFS:{description:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",abstract:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"logical_test1",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue1:{name:"value_if_true1",detail:"Result to be returned if logical_test1 evaluates to TRUE. Can be empty."},logicalTest2:{name:"logical_test2",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue2:{name:"value_if_true2",detail:"Result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN corresponds with a condition logical_testN. Can be empty."}}},LAMBDA:{description:"Use a LAMBDA function to create custom, reusable functions and call them by a friendly name. The new function is available throughout the workbook and called like native Excel functions.",abstract:"Create custom, reusable functions and call them by a friendly name",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"parameter",detail:"A value that you want to pass to the function, such as a cell reference, string or number. You can enter up to 253 parameters. This argument is optional."},calculation:{name:"calculation",detail:"The formula you want to execute and return as the result of the function. It must be the last argument and it must return a result. This argument is required."}}},LET:{description:"Assigns names to calculation results",abstract:"Assigns names to calculation results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"name1",detail:"The first name to assign. Must start with a letter. Cannot be the output of a formula or conflict with range syntax."},nameValue1:{name:"name_value1",detail:"The value that is assigned to name1."},calculationOrName2:{name:"calculation_or_name2",detail:`One of the following: +1.A calculation that uses all names within the LET function. This must be the last argument in the LET function. +2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required.`},nameValue2:{name:"name_value2",detail:"The value that is assigned to calculation_or_name2."},calculationOrName3:{name:"calculation_or_name3",detail:`One of the following: +1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation. +2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"is the units for number."},toUnit:{name:"to_unit",detail:"is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 2 to 255 complex numbers",abstract:"Returns the product of from 2 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",abstract:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",abstract:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",abstract:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{description:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",abstract:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{description:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",abstract:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"Returns the number of items in a set.",abstract:"Returns the number of items in a set.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"Returns an aggregated value from the cube.",abstract:"Returns an aggregated value from the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Returns a URL-encoded string",abstract:"Returns a URL-encoded string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"text",detail:"A string to be URL encoded"}}},FILTERXML:{description:"Returns specific data from the XML content by using the specified XPath",abstract:"Returns specific data from the XML content by using the specified XPath",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"Returns data from a web service",abstract:"Returns data from a web service",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"Constrains an array result to a specified size.",abstract:"Constrains an array result to a specified size.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"input_range",detail:"The range to constrain."},numRows:{name:"num_rows",detail:"The number of rows the result should contain."},numCols:{name:"num_cols",detail:"The number of columns the result should contain"}}},FLATTEN:{description:"Flattens all the values from one or more ranges into a single column.",abstract:"Flattens all the values from one or more ranges into a single column.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"range1",detail:"The first range to flatten."},range2:{name:"range2",detail:"Additional ranges to flatten."}}}},...{}},prompt:{helpExample:"مثال",helpAbstract:"درباره",required:"ضروری.",optional:"اختیاری."},error:{title:"خطا",divByZero:"خطای تقسیم بر صفر",name:"خطای نام نامعتبر",value:"خطا در مقدار",num:"خطای عدد",na:"خطای مقدار موجود نیست",cycle:"خطای مرجع دوره‌ای",ref:"خطای مرجع سلول نامعتبر",spill:"دامنه ریزش خالی نیست",calc:"خطای محاسبه",error:"خطا",connect:"در حال دریافت داده‌ها",null:"خطای تهی"},functionType:{financial:"مالی",date:"تاریخ و زمان",math:"ریاضی و مثلثاتی",statistical:"آماری",lookup:"جستجو و مرجع",database:"پایگاه داده",text:"متن",logical:"منطقی",information:"اطلاعاتی",engineering:"مهندسی",cube:"مکعب",compatibility:"سازگاری",web:"وب",array:"آرایه",univer:"Univer",user:"تعریف شده توسط کاربر",definedname:"نام تعریف شده"},moreFunctions:{confirm:"تایید",prev:"قبلی",next:"بعدی",searchFunctionPlaceholder:"جستجوی تابع",allFunctions:"همه توابع",syntax:"سینتکس"},operation:{pasteFormula:"چسباندن فرمول"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsNumfmtUiFaIR=t())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"درصد",title:"قالب‌بندی عدد",numfmtType:"انواع قالب‌بندی",cancel:"انصراف",confirm:"تایید",general:"عمومی",accounting:"حسابداری",text:"متن",number:"عدد",currency:"ارز",date:"تاریخ",time:"زمان",thousandthPercentile:"جداساز هزارتایی",preview:"پیش‌نمایش",dateTime:"تاریخ و زمان",decimalLength:"اعشار",currencyType:"نماد ارز",moreFmt:"قالب‌ها",financialValue:"مقدار مالی",roundingCurrency:"گرد کردن ارز",timeDuration:"مدت زمان",currencyDes:"قالب‌بندی ارز برای نمایش مقادیر عمومی ارز استفاده می‌شود. قالب‌بندی حسابداری ستونی از مقادیر را با اعشار تراز می‌کند.",accountingDes:"قالب‌بندی عددی حسابداری ستونی از مقادیر را با نمادهای ارز و اعشار تراز می‌کند.",dateType:"نوع تاریخ",dateDes:"قالب‌بندی تاریخ مقادیر سری تاریخ و زمان را به عنوان مقادیر تاریخ ارائه می‌دهد.",negType:"نوع عدد منفی",generalDes:"قالب‌بندی معمولی حاوی هیچ قالب‌بندی عدد خاصی نیست.",thousandthPercentileDes:"قالب‌بندی درصدی برای نمایش اعداد معمولی استفاده می‌شود. قالب‌بندی‌های پولی و حسابداری قالب تخصصی برای محاسبات مقدار پولی ارائه می‌دهند.",addDecimal:"افزایش اعشار",subtractDecimal:"کاهش اعشار",customFormat:"قالب‌بندی سفارشی",customFormatDes:"ایجاد قالب‌بندی‌های عددی سفارشی بر اساس قالب‌بندی‌های موجود."}}}}); + + +// locale/fa-IR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/design/locale/fa-IR"),require("@univerjs/docs-ui/locale/fa-IR"),require("@univerjs/sheets/locale/fa-IR"),require("@univerjs/sheets-formula/locale/fa-IR"),require("@univerjs/sheets-formula-ui/locale/fa-IR"),require("@univerjs/sheets-numfmt-ui/locale/fa-IR"),require("@univerjs/sheets-ui/locale/fa-IR"),require("@univerjs/ui/locale/fa-IR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/fa-IR","@univerjs/docs-ui/locale/fa-IR","@univerjs/sheets/locale/fa-IR","@univerjs/sheets-formula/locale/fa-IR","@univerjs/sheets-formula-ui/locale/fa-IR","@univerjs/sheets-numfmt-ui/locale/fa-IR","@univerjs/sheets-ui/locale/fa-IR","@univerjs/ui/locale/fa-IR"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreFaIR=i(e.UniverCore,e.UniverDesignFaIR,e.UniverDocsUiFaIR,e.UniverSheetsFaIR,e.UniverSheetsFormulaFaIR,e.UniverSheetsFormulaUiFaIR,e.UniverSheetsNumfmtUiFaIR,e.UniverSheetsUiFaIR,e.UniverUiFaIR))})(this,function(e,i,r,s,u,n,a,f,t){"use strict";return e.merge({},i,r,s,u,n,a,f,t)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fr-FR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fr-FR.js new file mode 100644 index 00000000..79b4b951 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/fr-FR.js @@ -0,0 +1,75 @@ +// @univerjs/ui/locale/fr-FR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define(i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverUiFrFR=i())})(this,function(){"use strict";return{ribbon:{start:"Démarrer",insert:"Insérer",formulas:"Formules",data:"Données",view:"Vue",others:"Autres",more:"Plus"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"Microsoft YaHei",SimSun:"SimSun",SimHei:"SimHei",Kaiti:"Kaiti",FangSong:"FangSong",NSimSun:"NSimSun",STXinwei:"STXinwei",STXingkai:"STXingkai",STLiti:"STLiti",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"Raccourcis"},shortcut:{undo:"Annuler",redo:"Refaire",cut:"Couper",copy:"Copier",paste:"Coller","shortcut-panel":"Basculer le panneau de raccourcis"},"common-edit":"Raccourcis d'édition courants","toggle-shortcut-panel":"Basculer le panneau de raccourcis",clipboard:{authentication:{title:"Permission refusée",content:"Veuillez autoriser Univer à accéder à votre presse-papiers."}},textEditor:{formulaError:"Veuillez entrer une formule valide, telle que =SOMME(A1)",rangeError:"Veuillez entrer une plage valide, telle que A1:B10"},rangeSelector:{title:"Sélectionner une plage de données",addAnotherRange:"Ajouter une plage",buttonTooltip:"Sélectionner une plage de données",placeHolder:"Sélectionner une plage ou entrer.",confirm:"Confirmer",cancel:"Annuler"},"global-shortcut":"Raccourci global","zoom-slider":{resetTo:"Réinitialiser à"}}}); + + +// @univerjs/docs-ui/locale/fr-FR +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiFrFR=n())})(this,function(){"use strict";return{toolbar:{undo:"Annuler",redo:"Rétablir",font:"Police",fontSize:"Taille de la police",bold:"Gras",italic:"Italique",strikethrough:"Barré",subscript:"Indice",superscript:"Exposant",underline:"Souligné",textColor:{main:"Couleur du texte",right:"Choisir une couleur"},fillColor:{main:"Couleur de fond du texte",right:"Choisir une couleur"},table:{main:"Tableau",insert:"Insérer un tableau",colCount:"Nombre de colonnes",rowCount:"Nombre de lignes"},resetColor:"Réinitialiser",order:"Liste ordonnée",unorder:"Liste non ordonnée",checklist:"Liste de tâches",documentFlavor:"Modern Mode",alignLeft:"Aligner à gauche",alignCenter:"Aligner au centre",alignRight:"Aligner à droite",alignJustify:"Justifier",headerFooter:"En-tête et pied de page"},table:{insert:"Insérer",insertRowAbove:"Insérer une ligne au-dessus",insertRowBelow:"Insérer une ligne en dessous",insertColumnLeft:"Insérer une colonne à gauche",insertColumnRight:"Insérer une colonne à droite",delete:"Supprimer",deleteRows:"Supprimer une ligne",deleteColumns:"Supprimer une colonne",deleteTable:"Supprimer le tableau"},headerFooter:{header:"En-tête",footer:"Pied de page",panel:"En-tête et pied de page",firstPageCheckBox:"Différente la première page",oddEvenCheckBox:"Différente les pages impaires et paires",headerTopMargin:"Marge en haut de l'en-tête(px)",footerBottomMargin:"Marge en bas du pied de page(px)",closeHeaderFooter:"Fermer l'en-tête et le pied de page",disableText:"Les paramètres de l'en-tête et du pied de page sont désactivés"},doc:{menu:{paragraphSetting:"Paramètres de paragraphe"},slider:{paragraphSetting:"Paramètres de paragraphe"},paragraphSetting:{alignment:"Alignement",indentation:"Indentation",left:"Gauche",right:"Droite",firstLine:"Première ligne",hanging:"Retrait",spacing:"Espacement",before:"Avant",after:"Après",lineSpace:"Espacement de ligne",multiSpace:"Espacement multiple",fixedValue:"Valeur fixe(px)"}}}}); + + +// @univerjs/sheets/locale/fr-FR +(function(e,s){typeof exports=="object"&&typeof module<"u"?module.exports=s():typeof define=="function"&&define.amd?define(s):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFrFR=s())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(Copie{0})",sheet:"Feuille"},info:{overlappingSelections:"Impossible d'utiliser cette commande sur des sélections qui se chevauchent",acrossMergedCell:"À travers une cellule fusionnée",partOfCell:"Seule une partie d'une cellule fusionnée est sélectionnée",hideSheet:"Aucune feuille visible après avoir masqué celle-ci"}}}}); + + +// @univerjs/sheets-ui/locale/fr-FR +(function(e,r){typeof exports=="object"&&typeof module<"u"?module.exports=r():typeof define=="function"&&define.amd?define(r):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsUiFrFR=r())})(this,function(){"use strict";return{spreadsheetLabel:"Feuille de calcul",spreadsheetRightLabel:"Plus de feuilles",toolbar:{undo:"Annuler",redo:"Refaire",formatPainter:"Reproduire la mise en forme",font:"Police",fontSize:"Taille de police",bold:"Gras",italic:"Italique",strikethrough:"Barré",subscript:"Indice",superscript:"Exposant",underline:"Souligner",textColor:{main:"Couleur du texte",right:"Choisir la couleur"},resetColor:"Réinitialiser",fillColor:{main:"Couleur de remplissage",right:"Choisir la couleur"},border:{main:"Bordure",right:"Style de bordure"},mergeCell:{main:"Fusionner les cellules",right:"Choisir le type de fusion"},horizontalAlignMode:{main:"Alignement horizontal",right:"Alignement"},verticalAlignMode:{main:"Alignement vertical",right:"Alignement"},textWrapMode:{main:"Renvoi à la ligne",right:"Mode de renvoi à la ligne"},textRotateMode:{main:"Rotation du texte",right:"Mode de rotation du texte"},more:"Plus",toggleGridlines:"Activer/désactiver le quadrillage"},align:{left:"gauche",center:"centre",right:"droite",top:"haut",middle:"milieu",bottom:"bas"},button:{confirm:"OK",cancel:"Annuler",close:"Fermer",update:"Mettre à jour",delete:"Supprimer",insert:"Insérer",prevPage:"Précédent",nextPage:"Suivant",total:"total :"},punctuation:{tab:"Tabulation",semicolon:"point-virgule",comma:"virgule",space:"espace"},colorPicker:{collapse:"Réduire",customColor:"PERSONNALISÉ",change:"Changer",confirmColor:"OK",cancelColor:"Annuler"},borderLine:{borderTop:"bordureHaut",borderBottom:"bordureBas",borderLeft:"bordureGauche",borderRight:"bordureDroite",borderNone:"aucuneBordure",borderAll:"toutesLesBordures",borderOutside:"bordureExtérieure",borderInside:"bordureIntérieure",borderHorizontal:"bordureHorizontale",borderVertical:"bordureVerticale",borderColor:"couleurDeBordure",borderSize:"tailleDeBordure",borderType:"typeDeBordure"},merge:{all:"Tout fusionner",vertical:"Fusion verticale",horizontal:"Fusion horizontale",cancel:"Annuler la fusion",overlappingError:"Impossible de fusionner des zones qui se chevauchent",partiallyError:"Impossible d'effectuer cette opération sur des cellules partiellement fusionnées",confirm:{title:"Continuer la fusion ne conserverait que la valeur de la cellule en haut à gauche, les autres valeurs seront supprimées. Voulez-vous continuer ?",cancel:"Annuler la fusion",confirm:"Continuer la fusion",waring:"Avertissement",dismantleMergeCellWaring:"Cela entraînera la division de certaines cellules fusionnées. Voulez-vous continuer ?"}},filter:{confirm:{error:"Il y a eu un problème",notAllowedToInsertRange:"Déplacement des cellules non autorisé ici tant que le filtre n'est pas effacé"}},textWrap:{overflow:"Débordement",wrap:"Renvoi à la ligne",clip:"Couper"},textRotate:{none:"Aucun",angleUp:"Incliner vers le haut",angleDown:"Incliner vers le bas",vertical:"Empiler verticalement",rotationUp:"Pivoter vers le haut",rotationDown:"Pivoter vers le bas"},sheetConfig:{delete:"Supprimer",copy:"Copier",rename:"Renommer",changeColor:"Changer la couleur",hide:"Masquer",unhide:"Afficher",moveLeft:"Déplacer à gauche",moveRight:"Déplacer à droite",resetColor:"Réinitialiser la couleur",cancelText:"Annuler",chooseText:"Confirmer la couleur",tipNameRepeat:"Le nom de l'onglet ne peut pas être répété ! Veuillez modifier",noMoreSheet:"Le classeur contient au moins une feuille de calcul visible. Pour supprimer la feuille sélectionnée, veuillez insérer une nouvelle feuille ou afficher une feuille masquée.",confirmDelete:"Êtes-vous sûr de vouloir supprimer",redoDelete:"Peut être annulé par Ctrl+Z",noHide:"Impossible de masquer, au moins une étiquette de feuille doit être conservée",chartEditNoOpt:"Cette opération n'est pas autorisée en mode d'édition de graphique !",sheetNameErrorTitle:"Il y a eu un problème",sheetNameSpecCharError:"Le nom ne peut pas dépasser 31 caractères, ne peut pas commencer ou se terminer par ', et ne peut pas contenir : [ ] : \\ ? * /",sheetNameCannotIsEmptyError:"Le nom de la feuille ne peut pas être vide.",sheetNameAlreadyExistsError:"Le nom de la feuille existe déjà. Veuillez entrer un autre nom.",deleteSheet:"Supprimer la feuille de calcul",deleteSheetContent:"Confirmer la suppression de cette feuille de calcul. Elle ne pourra pas être récupérée après suppression. Êtes-vous sûr de vouloir la supprimer ?",addProtectSheet:"Protéger la feuille de calcul",removeProtectSheet:"Déprotéger la feuille de calcul",changeSheetPermission:"Modifier les autorisations de la feuille de calcul",viewAllProtectArea:"Voir toutes les zones de protection"},rightClick:{copy:"Copier",cut:"Couper",paste:"Coller",pasteSpecial:"Collage spécial",pasteValue:"Coller la valeur",pasteFormat:"Coller le format",pasteColWidth:"Coller la largeur de la colonne",pasteBesidesBorder:"Coller à côté des styles de bordure",insert:"Insérer",insertRow:"Insérer une ligne",insertRowBefore:"Insérer une ligne avant",insertRowsAbove:"Insérer",insertRowsAfter:"Insérer",insertRowsAfterSuffix:"lignes après",insertRowsAboveSuffix:"lignes au-dessus",insertColumn:"Insérer une colonne",insertColumnBefore:"Insérer une colonne avant",insertColsLeft:"Insérer",insertColsRight:"Insérer",insertColsLeftSuffix:"colonnes à gauche",insertColsRightSuffix:"colonnes à droite",delete:"Supprimer",deleteCell:"Supprimer la cellule",insertCell:"Insérer une cellule",deleteSelected:"Supprimer la sélection",hide:"Masquer",hideSelected:"Masquer la sélection",showHide:"Afficher les masqués",toTopAdd:"Ajouter vers le haut",toBottomAdd:"Ajouter vers le bas",toLeftAdd:"Ajouter vers la gauche",toRightAdd:"Ajouter vers la droite",deleteSelectedRow:"Supprimer la ligne sélectionnée",deleteSelectedColumn:"Supprimer la colonne sélectionnée",hideSelectedRow:"Masquer la ligne sélectionnée",showHideRow:"Afficher la ligne sélectionnée",rowHeight:"Hauteur de ligne",hideSelectedColumn:"Masquer la colonne sélectionnée",showHideColumn:"Afficher/Masquer la colonne",columnWidth:"Largeur de colonne",moveLeft:"Déplacer à gauche",moveUp:"Déplacer vers le haut",moveRight:"Déplacer à droite",moveDown:"Déplacer vers le bas",add:"Ajouter",row:"Ligne",column:"Colonne",confirm:"Confirmer",clearSelection:"Effacer",clearContent:"Effacer le contenu",clearFormat:"Effacer les formats",clearAll:"Tout effacer",root:"Racine",log:"Logarithme",delete0:"Supprimer les valeurs 0 aux deux extrémités",removeDuplicate:"Supprimer les valeurs en double",byRow:"Par ligne",byCol:"Par colonne",generateNewMatrix:"Générer une nouvelle matrice",fitContent:"Adapter au contenu",freeze:"Figer",freezeCol:"Figer jusqu'à cette colonne",freezeRow:"Figer jusqu'à cette ligne",cancelFreeze:"Annuler le figement",deleteAllRowsAlert:"Vous ne pouvez pas supprimer toutes les lignes de la feuille",deleteAllColumnsAlert:"Vous ne pouvez pas supprimer toutes les colonnes de la feuille",hideAllRowsAlert:"Vous ne pouvez pas masquer toutes les lignes de la feuille",hideAllColumnsAlert:"Vous ne pouvez pas masquer toutes les colonnes de la feuille",protectRange:"Protéger les lignes et les colonnes",editProtectRange:"Définir la plage de protection",removeProtectRange:"Supprimer la plage de protection",turnOnProtectRange:"Ajouter une plage de protection",viewAllProtectArea:"Voir toutes les zones de protection"},info:{tooltip:"Info-bulle",error:"Erreur",notChangeMerge:"Vous ne pouvez pas apporter de modifications partielles aux cellules fusionnées",detailUpdate:"Nouvellement ouvert",detailSave:"Cache local restauré",row:"Ligne",column:"Colonne",loading:"Chargement...",copy:"Copier",return:"Quitter",rename:"Renommer",tips:"Renommer",noName:"Feuille de calcul sans titre",wait:"en attente de mise à jour",add:"Ajouter",addLast:"plus de lignes en bas",backTop:"Retour en haut",pageInfo:"Total ${total}, ${totalPage} page, actuel ${currentPage}",nextPage:"Suivant",tipInputNumber:"Veuillez entrer le nombre",tipInputNumberLimit:"L'augmentatiion de la plage est limitée à 1-100",tipRowHeightLimit:"La hauteur de la ligne doit être comprise entre 0 et 545",tipColumnWidthLimit:"La largeur de la colonne doit être comprise entre 0 et 2038",pageInfoFull:"Total ${total}, ${totalPage} page, toutes les données affichées",problem:"Il y a eu un problème",forceStringInfo:"Nombre stocké en tant que texte"},clipboard:{paste:{exceedMaxCells:"Le nombre de cellules collées dépasse le nombre maximum de cellules",overlappingMergedCells:"La zone de collage chevauche des cellules fusionnées"},shortCutNotify:{title:"Veuillez coller en utilisant les raccourcis clavier.",useShortCutInstead:"Contenu Excel détecté. Utilisez le raccourci clavier pour coller."}},statusbar:{sum:"Somme",average:"Moyenne",min:"Min",max:"Max",count:"Nombre numérique",countA:"Nombre",clickToCopy:"Cliquez pour copier",copied:"Copié"},autoFill:{copy:"Copier la cellule",series:"Remplir la série",formatOnly:"Format uniquement",noFormat:"Sans format"},rangeSelector:{placeholder:"Sélectionnez la plage ou entrez la valeur",tooltip:"Sélectionnez la plage"},shortcut:{sheet:{"zoom-in":"Zoom avant","zoom-out":"Zoom arrière","reset-zoom":"Réinitialiser le niveau de zoom","select-below-cell":"Sélectionner la cellule en dessous","select-up-cell":"Sélectionner la cellule au-dessus","select-left-cell":"Sélectionner la cellule à gauche","select-right-cell":"Sélectionner la cellule à droite","select-next-cell":"Sélectionner la cellule suivante","select-previous-cell":"Sélectionner la cellule précédente","select-up-value-cell":"Sélectionner la cellule au-dessus qui a une valeur","select-below-value-cell":"Sélectionner la cellule en dessous qui a une valeur","select-left-value-cell":"Sélectionner la cellule à gauche qui a une valeur","select-right-value-cell":"Sélectionner la cellule à droite qui a une valeur","expand-selection-down":"Étendre la sélection vers le bas","expand-selection-up":"Étendre la sélection vers le haut","expand-selection-left":"Étendre la sélection vers la gauche","expand-selection-right":"Étendre la sélection vers la droite","expand-selection-to-left-gap":"Étendre la sélection jusqu'à l'écart à gauche","expand-selection-to-below-gap":"Étendre la sélection jusqu'à l'écart en dessous","expand-selection-to-right-gap":"Étendre la sélection jusqu'à l'écart à droite","expand-selection-to-up-gap":"Étendre la sélection jusqu'à l'écart en haut","select-all":"Tout sélectionner","toggle-editing":"Basculer en mode édition","delete-and-start-editing":"Effacer et commencer à éditer","abort-editing":"Annuler l'édition","break-line":"Saut de ligne","set-bold":"Basculer en gras","start-editing":"Commencer l'édition (Sélection dans l'éditeur)","set-italic":"Basculer en italique","set-underline":"Basculer en souligné","set-strike-through":"Basculer en barré"}},"sheet-view":"Visualisation de la feuille","sheet-edit":"Édition de la feuille",definedName:{managerTitle:"Gérer les noms définis",managerDescription:"Créez un nom défini en sélectionnant des cellules ou des formules, et en entrant le nom souhaité dans la zone de texte.",addButton:"Ajouter un nom défini",featureTitle:"Noms définis",ratioRange:"Plage",ratioFormula:"Formule",confirm:"Confirmer",cancel:"Annuler",scopeWorkbook:"Classeur",inputNamePlaceholder:"Veuillez entrer un nom (espace non autorisé)",inputCommentPlaceholder:"Veuillez entrer un commentaire",inputRangePlaceholder:"Veuillez entrer une plage (espace non autorisé)",inputFormulaPlaceholder:"Veuillez entrer une formule (espace non autorisé)",nameEmpty:"Le nom ne peut pas être vide",nameDuplicate:"Le nom existe déjà",formulaOrRefStringEmpty:"La formule ou la chaîne de référence ne peut pas être vide",formulaOrRefStringInvalid:"Formule ou chaîne de référence invalide",defaultName:"NomDéfini",updateButton:"Mettre à jour",deleteButton:"Supprimer",deleteConfirmText:"Êtes-vous sûr de vouloir supprimer ce nom défini?",nameConflict:"Le nom est en conflit avec le nom de la fonction",nameInvalid:"Le nom est invalide",nameSheetConflict:"Le nom est en conflit avec le nom de la feuille"},uploadLoading:{loading:"Chargement..., restant",error:"Erreur"},permission:{toolbarMenu:"Protection",panel:{title:"Protéger les lignes et les colonnes",name:"Nom",protectedRange:"Plage protégée",permissionDirection:"Description des permissions",permissionDirectionPlaceholder:"Entrez la description des permissions",editPermission:"Modifier les permissions",onlyICanEdit:"Seul moi peut modifier",designedUserCanEdit:"Utilisateurs spécifiés peuvent modifier",viewPermission:"Voir les permissions",othersCanView:"Les autres peuvent voir",noOneElseCanView:"Personne d'autre ne peut voir",designedPerson:"Personnes spécifiées",addPerson:"Ajouter une personne",canEdit:"Peut modifier",canView:"Peut voir",delete:"Supprimer",currentSheet:"Feuille actuelle",allSheet:"Toutes les feuilles",edit:"Modifier",Print:"Imprimer",Comment:"Commenter",Copy:"Copier",SetCellStyle:"Définir le style de cellule",SetCellValue:"Définir la valeur de la cellule",SetHyperLink:"Définir le lien hypertexte",Sort:"Trier",Filter:"Filtrer",PivotTable:"Tableau croisé dynamique",FloatImage:"Image flottante",RowHeightColWidth:"Hauteur de ligne et largeur de colonne",RowHeightColWidthReadonly:"Hauteur de ligne et largeur de colonne en lecture seule",FilterReadonly:"Filtre en lecture seule",nameError:"Le nom ne peut pas être vide",created:"Créé",iCanEdit:"Je peux modifier",iCanNotEdit:"Je ne peux pas modifier",iCanView:"Je peux voir",iCanNotView:"Je ne peux pas voir",emptyRangeError:"La plage ne peut pas être vide",rangeOverlapError:"La plage ne peut pas se chevaucher",rangeOverlapOverPermissionError:"La plage ne peut pas se chevaucher avec la plage ayant la même permission",InsertHyperlink:"Insérer un lien hypertexte",SetRowStyle:"Définir le style de ligne",SetColumnStyle:"Définir le style de colonne",InsertColumn:"Insérer une colonne",InsertRow:"Insérer une ligne",DeleteRow:"Supprimer la ligne",DeleteColumn:"Supprimer la colonne",EditExtraObject:"Modifier l'objet supplémentaire"},dialog:{allowUserToEdit:"Autoriser l'utilisateur à modifier",allowedPermissionType:"Types de permissions autorisées",setCellValue:"Définir la valeur de la cellule",setCellStyle:"Définir le style de cellule",copy:"Copier",alert:"Alerte",search:"Rechercher",alertContent:"Cette plage est protégée et aucune permission de modification n'est actuellement disponible. Si vous avez besoin de modifier, veuillez contacter le créateur.",userEmpty:"aucune personne désignée, Partagez le lien pour inviter des personnes spécifiques.",listEmpty:"Vous n'avez défini aucune plage ou feuille comme protégée.",commonErr:"La plage est protégée, et vous n'avez pas la permission pour cette opération. Pour modifier, veuillez contacter le créateur.",editErr:"La plage est protégée, et vous n'avez pas la permission de modifier. Pour modifier, veuillez contacter le créateur.",pasteErr:"La plage est protégée, et vous n'avez pas la permission de coller. Pour coller, veuillez contacter le créateur.",setStyleErr:"La plage est protégée, et vous n'avez pas la permission de définir les styles. Pour définir les styles, veuillez contacter le créateur.",copyErr:"La plage est protégée, et vous n'avez pas la permission de copier. Pour copier, veuillez contacter le créateur.",workbookCopyErr:"Le classeur est protégé, et vous n'avez pas la permission de copier. Pour copier, veuillez contacter le créateur.",setRowColStyleErr:"La plage est protégée, et vous n'avez pas la permission de définir les styles de ligne et de colonne. Pour définir les styles de ligne et de colonne, veuillez contacter le créateur.",moveRowColErr:"La plage est protégée, et vous n'avez pas la permission de déplacer les lignes et les colonnes. Pour déplacer les lignes et les colonnes, veuillez contacter le créateur.",moveRangeErr:"La plage est protégée, et vous n'avez pas la permission de déplacer la sélection. Pour déplacer la sélection, veuillez contacter le créateur.",autoFillErr:"La plage est protégée, et vous n'avez pas la permission pour le remplissage automatique. Pour utiliser le remplissage automatique, veuillez contacter le créateur.",filterErr:"La plage est protégée, et vous n'avez pas la permission de filtrer. Pour filtrer, veuillez contacter le créateur.",operatorSheetErr:"La feuille de calcul est protégée, et vous n'avez pas la permission de travailler sur la feuille de calcul. Pour travailler sur la feuille de calcul, veuillez contacter le créateur.",insertOrDeleteMoveRangeErr:"La plage insérée ou supprimée intersecte la plage protégée, et cette opération n'est pas supportée pour le moment.",printErr:"La feuille de calcul est protégée, et vous n'avez pas la permission d'imprimer. Pour imprimer, veuillez contacter le créateur.",formulaErr:"La plage ou la plage référencée est protégée, et vous n'avez pas la permission de modifier. Pour modifier, veuillez contacter le créateur.",hyperLinkErr:"La plage est protégée, et vous n'avez pas la permission de définir des liens hypertextes. Pour définir des liens hypertextes, veuillez contacter le créateur."},button:{confirm:"Confirmer",cancel:"Annuler",addNewPermission:"Ajouter une nouvelle permission"}}}}); + + +// @univerjs/sheets-formula/locale/fr-FR +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaFrFR=n())})(this,function(){"use strict";return{formula:{progress:{analyzing:"Analyse en cours",calculating:"Calcul en cours","array-analysis":"Analyse de tableau","array-calculation":"Calcul de tableau",done:"Terminé"}}}}); + + +// @univerjs/sheets-formula-ui/locale/fr-FR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaUiFrFR=t())})(this,function(){"use strict";return{formula:{insert:{tooltip:"Fonctions",sum:"SOMME",average:"MOYENNE",count:"NOMBRE",max:"MAX",min:"MIN",more:"Plus de fonctions..."},functionList:{...{ACCRINT:{description:"Returns the accrued interest for a security that pays periodic interest",abstract:"Returns the accrued interest for a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},firstInterest:{name:"first_interest",detail:"The security's first interest date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."},calcMethod:{name:"calc_method",detail:"Is a logical value: interest accrues from the issue date = TRUE or ignored; interest accrues from the last coupon payment date = FALSE."}}},ACCRINTM:{description:"Returns the accrued interest for a security that pays interest at maturity",abstract:"Returns the accrued interest for a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},AMORDEGRC:{description:"Returns the depreciation for each accounting period by using a depreciation coefficient",abstract:"Returns the depreciation for each accounting period by using a depreciation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"Returns the depreciation for each accounting period",abstract:"Returns the depreciation for each accounting period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"cost",detail:"The cost of the asset."},datePurchased:{name:"date_purchased",detail:"The date of the purchase of the asset."},firstPeriod:{name:"first_period",detail:"The date of the end of the first period."},salvage:{name:"salvage",detail:"The salvage value at the end of the life of the asset."},period:{name:"period",detail:"The period."},rate:{name:"rate",detail:"The rate of depreciation."},basis:{name:"basis",detail:"The year basis to be used."}}},COUPDAYBS:{description:"Returns the number of days from the beginning of the coupon period to the settlement date",abstract:"Returns the number of days from the beginning of the coupon period to the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYS:{description:"Returns the number of days in the coupon period that contains the settlement date",abstract:"Returns the number of days in the coupon period that contains the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYSNC:{description:"Returns the number of days from the settlement date to the next coupon date",abstract:"Returns the number of days from the settlement date to the next coupon date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNCD:{description:"Returns the next coupon date after the settlement date",abstract:"Returns the next coupon date after the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNUM:{description:"Returns the number of coupons payable between the settlement date and maturity date",abstract:"Returns the number of coupons payable between the settlement date and maturity date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPPCD:{description:"Returns the previous coupon date before the settlement date",abstract:"Returns the previous coupon date before the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},CUMIPMT:{description:"Returns the cumulative interest paid between two periods",abstract:"Returns the cumulative interest paid between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},CUMPRINC:{description:"Returns the cumulative principal paid on a loan between two periods",abstract:"Returns the cumulative principal paid on a loan between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},DB:{description:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",abstract:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},month:{name:"month",detail:"The number of months in the first year. If month is omitted, it is assumed to be 12."}}},DDB:{description:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",abstract:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."}}},DISC:{description:"Returns the discount rate for a security",abstract:"Returns the discount rate for a security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},DOLLARDE:{description:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",abstract:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427"}],functionParameter:{fractionalDollar:{name:"fractional_dollar",detail:"A number expressed as an integer part and a fraction part, separated by a decimal symbol."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DOLLARFR:{description:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",abstract:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495"}],functionParameter:{decimalDollar:{name:"decimal_dollar",detail:"A decimal number."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DURATION:{description:"Returns the annual duration of a security with periodic interest payments",abstract:"Returns the annual duration of a security with periodic interest payments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},EFFECT:{description:"Returns the effective annual interest rate",abstract:"Returns the effective annual interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4"}],functionParameter:{nominalRate:{name:"nominal_rate",detail:"The nominal interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},FV:{description:"Returns the future value of an investment",abstract:"Returns the future value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},FVSCHEDULE:{description:"Returns the future value of an initial principal after applying a series of compound interest rates",abstract:"Returns the future value of an initial principal after applying a series of compound interest rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d"}],functionParameter:{principal:{name:"principal",detail:"The present value."},schedule:{name:"schedule",detail:"An array of interest rates to apply."}}},INTRATE:{description:"Returns the interest rate for a fully invested security",abstract:"Returns the interest rate for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},redemption:{name:"redemption",detail:"The amount to be received at maturity."},basis:{name:"basis",detail:"The type of day count basis to use."}}},IPMT:{description:"Returns the interest payment for an investment for a given period",abstract:"Returns the interest payment for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},IRR:{description:"Returns the internal rate of return for a series of cash flows",abstract:"Returns the internal rate of return for a series of cash flows",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers for which you want to calculate the internal rate of return. +1.Values must contain at least one positive value and one negative value to calculate the internal rate of return. +2.IRR uses the order of values to interpret the order of cash flows. Be sure to enter your payment and income values in the sequence you want. +3.If an array or reference argument contains text, logical values, or empty cells, those values are ignored.`},guess:{name:"guess",detail:"A number that you guess is close to the result of IRR."}}},ISPMT:{description:"Calculates the interest paid during a specific period of an investment",abstract:"Calculates the interest paid during a specific period of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc"}],functionParameter:{rate:{name:"rate",detail:"The interest rate for the investment."},per:{name:"per",detail:"The period for which you want to find the interest, and must be between 1 and Nper."},nper:{name:"nper",detail:"The total number of payment periods for the investment."},pv:{name:"pv",detail:"The present value of the investment. For a loan, Pv is the loan amount."}}},MDURATION:{description:"Returns the Macauley modified duration for a security with an assumed par value of $100",abstract:"Returns the Macauley modified duration for a security with an assumed par value of $100",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},MIRR:{description:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",abstract:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers. These numbers represent a series of payments (negative values) and income (positive values) occurring at regular periods. +1.Values must contain at least one positive value and one negative value to calculate the modified internal rate of return. Otherwise, MIRR returns the #DIV/0! error value. +2.If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.`},financeRate:{name:"finance_rate",detail:"The interest rate you pay on the money used in the cash flows."},reinvestRate:{name:"reinvest_rate",detail:"The interest rate you receive on the cash flows as you reinvest them."}}},NOMINAL:{description:"Returns the annual nominal interest rate",abstract:"Returns the annual nominal interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b"}],functionParameter:{effectRate:{name:"effect_rate",detail:"The effective interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},NPER:{description:"Returns the number of periods for an investment",abstract:"Returns the number of periods for an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},NPV:{description:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",abstract:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568"}],functionParameter:{rate:{name:"rate",detail:"The rate of discount over the length of one period."},value1:{name:"value1",detail:"1 to 254 arguments representing the payments and income."},value2:{name:"value2",detail:"1 to 254 arguments representing the payments and income."}}},ODDFPRICE:{description:"Returns the price per $100 face value of a security with an odd first period",abstract:"Returns the price per $100 face value of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDFYIELD:{description:"Returns the yield of a security with an odd first period",abstract:"Returns the yield of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLPRICE:{description:"Returns the price per $100 face value of a security with an odd last period",abstract:"Returns the price per $100 face value of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLYIELD:{description:"Returns the yield of a security with an odd last period",abstract:"Returns the yield of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PDURATION:{description:"Returns the number of periods required by an investment to reach a specified value",abstract:"Returns the number of periods required by an investment to reach a specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"rate",detail:"Rate is the interest rate per period."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the desired future value of the investment."}}},PMT:{description:"Returns the periodic payment for an annuity",abstract:"Returns the periodic payment for an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PPMT:{description:"Returns the payment on the principal for an investment for a given period",abstract:"Returns the payment on the principal for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PRICE:{description:"Returns the price per $100 face value of a security that pays periodic interest",abstract:"Returns the price per $100 face value of a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEDISC:{description:"Returns the price per $100 face value of a discounted security",abstract:"Returns the price per $100 face value of a discounted security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},discount:{name:"discount",detail:"The security's discount rate."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEMAT:{description:"Returns the price per $100 face value of a security that pays interest at maturity",abstract:"Returns the price per $100 face value of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PV:{description:"Returns the present value of an investment",abstract:"Returns the present value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},RATE:{description:"Returns the interest rate per period of an annuity",abstract:"Returns the interest rate per period of an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce"}],functionParameter:{nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."},guess:{name:"guess",detail:"Your guess for what the rate will be."}}},RECEIVED:{description:"Returns the amount received at maturity for a fully invested security",abstract:"Returns the amount received at maturity for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},discount:{name:"discount",detail:"The security's discount rate."},basis:{name:"basis",detail:"The type of day count basis to use."}}},RRI:{description:"Returns an equivalent interest rate for the growth of an investment",abstract:"Returns an equivalent interest rate for the growth of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"nper",detail:"Nper is the number of periods for the investment."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the future value of the investment."}}},SLN:{description:"Returns the straight-line depreciation of an asset for one period",abstract:"Returns the straight-line depreciation of an asset for one period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."}}},SYD:{description:"Returns the sum-of-years' digits depreciation of an asset for a specified period",abstract:"Returns the sum-of-years' digits depreciation of an asset for a specified period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."},per:{name:"per",detail:"The period and must use the same units as life."}}},TBILLEQ:{description:"Returns the bond-equivalent yield for a Treasury bill",abstract:"Returns the bond-equivalent yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLPRICE:{description:"Returns the price per $100 face value for a Treasury bill",abstract:"Returns the price per $100 face value for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLYIELD:{description:"Returns the yield for a Treasury bill",abstract:"Returns the yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},pr:{name:"pr",detail:"The Treasury bill's price per $100 face value."}}},VDB:{description:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",abstract:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},startPeriod:{name:"start_period",detail:"The starting period for which you want to calculate the depreciation."},endPeriod:{name:"end_period",detail:"The ending period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."},noSwitch:{name:"no_switch",detail:"A logical value specifying whether to switch to straight-line depreciation when depreciation is greater than the declining balance calculation."}}},XIRR:{description:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d"}],functionParameter:{values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."},guess:{name:"guess",detail:"A number that you guess is close to the result of XIRR."}}},XNPV:{description:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7"}],functionParameter:{rate:{name:"rate",detail:"The discount rate to apply to the cash flows."},values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."}}},YIELD:{description:"Returns the yield on a security that pays periodic interest",abstract:"Returns the yield on a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDDISC:{description:"Returns the annual yield for a discounted security; for example, a Treasury bill",abstract:"Returns the annual yield for a discounted security; for example, a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDMAT:{description:"Returns the annual yield of a security that pays interest at maturity",abstract:"Returns the annual yield of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{DATE:{description:"Returns the serial number of a particular date",abstract:"Returns the serial number of a particular date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"year",detail:"The value of the year argument can include one to four digits. Excel interprets the year argument according to the date system your computer is using. By default, Univer uses the 1900 date system, which means the first date is January 1, 1900."},month:{name:"month",detail:"A positive or negative integer representing the month of the year from 1 to 12 (January to December)."},day:{name:"day",detail:"A positive or negative integer representing the day of the month from 1 to 31."}}},DATEDIF:{description:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",abstract:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the first, or starting date of a given period."},endDate:{name:"end_date",detail:"A date that represents the last, or ending, date of the period."},method:{name:"method",detail:"The type of information that you want returned."}}},DATEVALUE:{description:"Converts a date in the form of text to a serial number.",abstract:"Converts a date in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"date_text",detail:`Text that represents a date in an Excel date format, or a reference to a cell that contains text that represents a date in an Excel date format. For example, "1/30/2008" or "30-Jan-2008" are text strings within quotation marks that represent dates. +Using the default date system in Microsoft Excel for Windows, the date_text argument must represent a date between January 1, 1900 and December 31, 9999. The DATEVALUE function returns the #VALUE! error value if the value of the date_text argument falls outside of this range. +If the year portion of the date_text argument is omitted, the DATEVALUE function uses the current year from your computer's built-in clock. Time information in the date_text argument is ignored.`}}},DAY:{description:"Returns the day of a date, represented by a serial number. The day is given as an integer ranging from 1 to 31.",abstract:"Converts a serial number to a day of the month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},DAYS:{description:"Returns the number of days between two dates",abstract:"Returns the number of days between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."}}},DAYS360:{description:"Calculates the number of days between two dates based on a 360-day year",abstract:"Calculates the number of days between two dates based on a 360-day year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},method:{name:"method",detail:"A logical value that specifies whether to use the U.S. or European method in the calculation."}}},EDATE:{description:"Returns the serial number that represents the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue.",abstract:"Returns the serial number of the date that is the indicated number of months before or after the start date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."},months:{name:"months",detail:"The number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date."}}},EOMONTH:{description:"Returns the serial number of the last day of the month before or after a specified number of months",abstract:"Returns the serial number of the last day of the month before or after a specified number of months",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the starting date."},months:{name:"months",detail:"The number of months before or after start_date."}}},EPOCHTODATE:{description:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",abstract:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"timestamp",detail:"A Unix epoch timestamp, in seconds, milliseconds, or microseconds."},unit:{name:"unit",detail:`The unit of time in which the timestamp is expressed. 1 by default: +1 indicates the time unit is seconds. +2 indicates the time unit is milliseconds. +3 indicates the time unit is microseconds.`}}},HOUR:{description:"Converts a serial number to an hour",abstract:"Converts a serial number to an hour",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},ISOWEEKNUM:{description:"Returns the number of the ISO week number of the year for a given date",abstract:"Returns the number of the ISO week number of the year for a given date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"date",detail:"Date is the date-time code used by Excel for date and time calculation."}}},MINUTE:{description:"Converts a serial number to a minute",abstract:"Converts a serial number to a minute",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},MONTH:{description:"Returns the month of a date represented by a serial number. The month is given as an integer, ranging from 1 (January) to 12 (December).",abstract:"Converts a serial number to a month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8"}],functionParameter:{serialNumber:{name:"serial_number",detail:"Required. The date of the month you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},NETWORKDAYS:{description:"Returns the number of whole workdays between two dates",abstract:"Returns the number of whole workdays between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NETWORKDAYS_INTL:{description:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",abstract:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NOW:{description:"Returns the serial number of the current date and time.",abstract:"Returns the serial number of the current date and time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46"}],functionParameter:{}},SECOND:{description:"Converts a serial number to a second",abstract:"Converts a serial number to a second",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},TIME:{description:"Returns the serial number of a particular time.",abstract:"Returns the serial number of a particular time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457"}],functionParameter:{hour:{name:"hour",detail:"A number from 0 (zero) to 32767 representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, TIME(27,0,0) = TIME(3,0,0) = .125 or 3:00 AM."},minute:{name:"minute",detail:"A number from 0 to 32767 representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM."},second:{name:"second",detail:"A number from 0 to 32767 representing the second. Any value greater than 59 will be converted to hours, minutes, and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 or 12:33:20 AM."}}},TIMEVALUE:{description:"Converts a time in the form of text to a serial number.",abstract:"Converts a time in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645"}],functionParameter:{timeText:{name:"time_text",detail:'A text string that represents a time in any one of the Microsoft Excel time formats; for example, "6:45 PM" and "18:45" text strings within quotation marks that represent time.'}}},TO_DATE:{description:"Converts a provided number to a date.",abstract:"Converts a provided number to a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The argument or reference to a cell to be converted to a date."}}},TODAY:{description:"Returns the serial number of today's date",abstract:"Returns the serial number of today's date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9"}],functionParameter:{}},WEEKDAY:{description:"Converts a serial number to a day of the week",abstract:"Converts a serial number to a day of the week",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A sequential number that represents the date of the day you are trying to find."},returnType:{name:"return_type",detail:"A number that determines the type of return value."}}},WEEKNUM:{description:"Converts a serial number to a number representing where the week falls numerically with a year",abstract:"Converts a serial number to a number representing where the week falls numerically with a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A date within the week."},returnType:{name:"return_type",detail:"A number that determines on which day the week begins. The default is 1."}}},WORKDAY:{description:"Returns the serial number of the date before or after a specified number of workdays",abstract:"Returns the serial number of the date before or after a specified number of workdays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},WORKDAY_INTL:{description:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",abstract:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},YEAR:{description:"Returns the year corresponding to a date. The year is returned as an integer in the range 1900-9999.",abstract:"Converts a serial number to a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the year you want to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."}}},YEARFRAC:{description:"Returns the year fraction representing the number of whole days between start_date and end_date",abstract:"Returns the year fraction representing the number of whole days between start_date and end_date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{ABS:{description:"Returns the absolute value of a number. The absolute value of a number is the number without its sign.",abstract:"Returns the absolute value of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"number",detail:"The real number of which you want the absolute value."}}},ACOS:{description:"Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is number. The returned angle is given in radians in the range 0 (zero) to pi.",abstract:"Returns the arccosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"number",detail:"The cosine of the angle you want and must be from -1 to 1."}}},ACOSH:{description:"Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is number, so ACOSH(COSH(number)) equals number.",abstract:"Returns the inverse hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"number",detail:"Any real number equal to or greater than 1."}}},ACOT:{description:"Returns the principal value of the arccotangent, or inverse cotangent, of a number.",abstract:"Returns the arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"number",detail:"Number is the cotangent of the angle you want. This must be a real number."}}},ACOTH:{description:"Returns the hyperbolic arccotangent of a number",abstract:"Returns the hyperbolic arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"number",detail:"The absolute value of Number must be greater than 1."}}},AGGREGATE:{description:"Returns an aggregate in a list or database",abstract:"Returns an aggregate in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ARABIC:{description:"Converts a Roman number to Arabic, as a number",abstract:"Converts a Roman number to Arabic, as a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"text",detail:'A string enclosed in quotation marks, an empty string (""), or a reference to a cell containing text.'}}},ASIN:{description:"Returns the arcsine of a number.",abstract:"Returns the arcsine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"number",detail:"The sine of the angle you want and must be from -1 to 1."}}},ASINH:{description:"Returns the inverse hyperbolic sine of a number.",abstract:"Returns the inverse hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},ATAN:{description:"Returns the arctangent of a number.",abstract:"Returns the arctangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"number",detail:"The tangent of the angle you want."}}},ATAN2:{description:"Returns the arctangent from x- and y-coordinates.",abstract:"Returns the arctangent from x- and y-coordinates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"x_num",detail:"The x-coordinate of the point."},yNum:{name:"y_num",detail:"The y-coordinate of the point."}}},ATANH:{description:"Returns the inverse hyperbolic tangent of a number.",abstract:"Returns the inverse hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"number",detail:"Any real number between 1 and -1."}}},BASE:{description:"Converts a number into a text representation with the given radix (base)",abstract:"Converts a number into a text representation with the given radix (base)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"number",detail:"The number that you want to convert. Must be an integer greater than or equal to 0 and less than 2^53."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."},minLength:{name:"min_length",detail:"The minimum length of the returned string. Must be an integer greater than or equal to 0."}}},CEILING:{description:"Rounds a number to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},CEILING_MATH:{description:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},CEILING_PRECISE:{description:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",abstract:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},COMBIN:{description:"Returns the number of combinations for a given number of objects",abstract:"Returns the number of combinations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COMBINA:{description:"Returns the number of combinations with repetitions for a given number of items",abstract:"Returns the number of combinations with repetitions for a given number of items",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COS:{description:"Returns the cosine of a number.",abstract:"Returns the cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosine."}}},COSH:{description:"Returns the hyperbolic cosine of a number",abstract:"Returns the hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cosine."}}},COT:{description:"Returns the cotangent of an angle",abstract:"Returns the cotangent of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cotangent."}}},COTH:{description:"Returns the hyperbolic cotangent of a number",abstract:"Returns the hyperbolic cotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cotangent."}}},CSC:{description:"Returns the cosecant of an angle",abstract:"Returns the cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosecant."}}},CSCH:{description:"Returns the hyperbolic cosecant of an angle",abstract:"Returns the hyperbolic cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the hyperbolic cosecant."}}},DECIMAL:{description:"Converts a text representation of a number in a given base into a decimal number",abstract:"Converts a text representation of a number in a given base into a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"text",detail:"The string length of Text must be less than or equal to 255 characters."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."}}},DEGREES:{description:"Converts radians to degrees",abstract:"Converts radians to degrees",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"angle",detail:"The angle in radians that you want to convert."}}},EVEN:{description:"Rounds a number up to the nearest even integer",abstract:"Rounds a number up to the nearest even integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},EXP:{description:"Returns e raised to the power of a given number",abstract:"Returns e raised to the power of a given number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"number",detail:"The exponent applied to the base e."}}},FACT:{description:"Returns the factorial of a number",abstract:"Returns the factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the factorial. If number is not an integer, it is truncated."}}},FACTDOUBLE:{description:"Returns the double factorial of a number",abstract:"Returns the double factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the double factorial. If number is not an integer, it is truncated."}}},FLOOR:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},FLOOR_MATH:{description:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},FLOOR_PRECISE:{description:"Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",abstract:"Rounds a number down to the nearest integer or to the nearest multiple of significance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},GCD:{description:"Returns the greatest common divisor",abstract:"Returns the greatest common divisor",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the greatest common divisor, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose greatest common divisor is to be found. Up to 255 numbers can be specified in this way."}}},INT:{description:"Rounds a number down to the nearest integer",abstract:"Rounds a number down to the nearest integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"number",detail:"The real number you want to round down to an integer."}}},ISO_CEILING:{description:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",abstract:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LCM:{description:"Returns the least common multiple",abstract:"Returns the least common multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the least common multiple, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose least common multiple is to be found. Up to 255 numbers can be specified in this way."}}},LET:{description:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",abstract:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LN:{description:"Returns the natural logarithm of a number",abstract:"Returns the natural logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the natural logarithm."}}},LOG:{description:"Returns the logarithm of a number to a specified base",abstract:"Returns the logarithm of a number to a specified base",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the logarithm."},base:{name:"base",detail:"The base of the logarithm. If base is omitted, it is assumed to be 10."}}},LOG10:{description:"Returns the base-10 logarithm of a number",abstract:"Returns the base-10 logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the base-10 logarithm."}}},MDETERM:{description:"Returns the matrix determinant of an array",abstract:"Returns the matrix determinant of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MINVERSE:{description:"Returns the matrix inverse of an array",abstract:"Returns the matrix inverse of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MMULT:{description:"Returns the matrix product of two arrays",abstract:"Returns the matrix product of two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"array1",detail:"The arrays you want to multiply."},array2:{name:"array2",detail:"The arrays you want to multiply."}}},MOD:{description:"Returns the remainder after number is divided by divisor. The result has the same sign as divisor.",abstract:"Returns the remainder from division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"number",detail:"The number for which you want to find the remainder."},divisor:{name:"divisor",detail:"The number by which you want to divide number"}}},MROUND:{description:"Returns a number rounded to the desired multiple",abstract:"Returns a number rounded to the desired multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"number",detail:"The value to round."},multiple:{name:"multiple",detail:"The multiple to which you want to round number."}}},MULTINOMIAL:{description:"Returns the multinomial of a set of numbers",abstract:"Returns the multinomial of a set of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"number1",detail:"The first value or range to use in the calculation."},number2:{name:"number2",detail:"Additional values ​​or ranges to use in calculations."}}},MUNIT:{description:"Returns the unit matrix or the specified dimension",abstract:"Returns the unit matrix or the specified dimension",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"dimension",detail:"Dimension is an integer specifying the dimension of the unit matrix that you want to return. It returns an array. The dimension has to be greater than zero."}}},ODD:{description:"Rounds a number up to the nearest odd integer",abstract:"Rounds a number up to the nearest odd integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},PI:{description:"Returns the value of pi",abstract:"Returns the value of pi",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"Returns the result of a number raised to a power.",abstract:"Returns the result of a number raised to a power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"number",detail:"The base number. It can be any real number."},power:{name:"power",detail:"The exponent to which the base number is raised."}}},PRODUCT:{description:"Multiplies all the numbers given as arguments and returns the product.",abstract:"Multiplies its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"number1",detail:"The first number or range that you want to multiply."},number2:{name:"number2",detail:"Additional numbers or ranges that you want to multiply, up to a maximum of 255 arguments."}}},QUOTIENT:{description:"Returns the integer portion of a division",abstract:"Returns the integer portion of a division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"numerator",detail:"The dividend."},denominator:{name:"denominator",detail:"The divisor."}}},RADIANS:{description:"Converts degrees to radians",abstract:"Converts degrees to radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"angle",detail:"An angle in degrees that you want to convert."}}},RAND:{description:"Returns a random number between 0 and 1",abstract:"Returns a random number between 0 and 1",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",abstract:"Returns an array of random numbers between 0 and 1.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to be returned"},columns:{name:"columns",detail:"The number of columns to be returned"},min:{name:"min",detail:"The minimum number you would like returned"},max:{name:"max",detail:"The maximum number you would like returned"},wholeNumber:{name:"whole_number",detail:"Return a whole number or a decimal value"}}},RANDBETWEEN:{description:"Returns a random number between the numbers you specify",abstract:"Returns a random number between the numbers you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"bottom",detail:"The smallest integer RANDBETWEEN will return."},top:{name:"top",detail:"The largest integer RANDBETWEEN will return."}}},ROMAN:{description:"Converts an Arabic numeral to Roman, as text",abstract:"Converts an Arabic numeral to Roman, as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"number",detail:"The Arabic numeral you want converted."},form:{name:"form",detail:"A number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases."}}},ROUND:{description:"Rounds a number to a specified number of digits",abstract:"Rounds a number to a specified number of digits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDBANK:{description:"Rounds a number in banker's rounding",abstract:"Rounds a number in banker's rounding",links:[{title:"Instruction",url:""}],functionParameter:{number:{name:"number",detail:"The number that you want to round in banker's rounding."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round in banker's rounding."}}},ROUNDDOWN:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDUP:{description:"Rounds a number up, away from zero",abstract:"Rounds a number up, away from zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},SEC:{description:"Returns the secant of an angle",abstract:"Returns the secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the secant."}}},SECH:{description:"Returns the hyperbolic secant of an angle",abstract:"Returns the hyperbolic secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the hyperbolic secant."}}},SERIESSUM:{description:"Returns the sum of a power series based on the formula",abstract:"Returns the sum of a power series based on the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"The input value to the power series."},n:{name:"n",detail:"The initial power to which you want to raise x."},m:{name:"m",detail:"The step by which to increase n for each term in the series."},coefficients:{name:"coefficients",detail:"A set of coefficients by which each successive power of x is multiplied."}}},SEQUENCE:{description:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",abstract:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to return."},columns:{name:"columns",detail:"The number of columns to return."},start:{name:"start",detail:"The first number in the sequence."},step:{name:"step",detail:"The amount to increment each subsequent value in the array."}}},SIGN:{description:"Returns the sign of a number",abstract:"Returns the sign of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SIN:{description:"Returns the sine of the given angle",abstract:"Returns the sine of the given angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the sine."}}},SINH:{description:"Returns the hyperbolic sine of a number",abstract:"Returns the hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SQRT:{description:"Returns a positive square root",abstract:"Returns a positive square root",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"number",detail:"The number for which you want the square root."}}},SQRTPI:{description:"Returns the square root of (number * pi)",abstract:"Returns the square root of (number * pi)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"number",detail:"The number by which pi is multiplied."}}},SUBTOTAL:{description:"Returns a subtotal in a list or database.",abstract:"Returns a subtotal in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"function_num",detail:"The number 1-11 or 101-111 that specifies the function to use for the subtotal. 1-11 includes manually-hidden rows, while 101-111 excludes them; filtered-out cells are always excluded."},ref1:{name:"ref1",detail:"The first named range or reference for which you want the subtotal."},ref2:{name:"ref2",detail:"Named ranges or references 2 to 254 for which you want the subtotal."}}},SUM:{description:"You can add individual values, cell references or ranges or a mix of all three.",abstract:"Adds its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"Number 1",detail:"The first number you want to add. The number can be like 4, a cell reference like B6, or a cell range like B2:B8."},number2:{name:"Number 2",detail:"This is the second number you want to add. You can specify up to 255 numbers in this way."}}},SUMIF:{description:"Sum the values in a range that meet criteria that you specify.",abstract:"Adds the cells specified by a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"range",detail:"The range of cells that you want evaluated by criteria."},criteria:{name:"criteria",detail:"The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. Wildcard characters can be included - a question mark (?) to match any single character, an asterisk (*) to match any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character."},sumRange:{name:"sum_range",detail:"The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied)."}}},SUMIFS:{description:"Adds all of its arguments that meet multiple criteria.",abstract:"Adds all of its arguments that meet multiple criteria.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"sum_range",detail:"The range of cells to sum."},criteriaRange1:{name:"criteria_range1 ",detail:"The range that is tested using criteria1. criteria_range1 and criteria1 set up a search pair whereby a range is searched for specific criteria. Once items in the range are found, their corresponding values in sum_range are added."},criteria1:{name:"criteria1",detail:'The criteria that defines which cells in criteria_range1 will be added. For example, criteria can be entered as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 range pairs."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria pairs."}}},SUMPRODUCT:{description:"Returns the sum of the products of corresponding array components",abstract:"Returns the sum of the products of corresponding array components",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"array",detail:"The first array argument whose components you want to multiply and then add."},array2:{name:"array",detail:"Array arguments 2 to 255 whose components you want to multiply and then add."}}},SUMSQ:{description:"Returns the sum of the squares of the arguments",abstract:"Returns the sum of the squares of the arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"number1",detail:"To square and find the first number, you can also use a single array or a reference to an array instead of comma-separated parameters."},number2:{name:"number2",detail:"The second number to be squared and summed. Up to 255 numbers can be specified in this way."}}},SUMX2MY2:{description:"Returns the sum of the difference of squares of corresponding values in two arrays",abstract:"Returns the sum of the difference of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMX2PY2:{description:"Returns the sum of the sum of squares of corresponding values in two arrays",abstract:"Returns the sum of the sum of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMXMY2:{description:"Returns the sum of squares of differences of corresponding values in two arrays",abstract:"Returns the sum of squares of differences of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},TAN:{description:"Returns the tangent of a number.",abstract:"Returns the tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the tangent."}}},TANH:{description:"Returns the hyperbolic tangent of a number.",abstract:"Returns the hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},TRUNC:{description:"Truncates a number to an integer",abstract:"Truncates a number to an integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"number",detail:"The number you want to truncate."},numDigits:{name:"num_digits",detail:"A number specifying the precision of the truncation. The default value for num_digits is 0 (zero)."}}}},...{AVEDEV:{description:"Returns the average of the absolute deviations of data points from their mean.",abstract:"Returns the average of the absolute deviations of data points from their mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE:{description:"Returns the average (arithmetic mean) of the arguments.",abstract:"Returns the average of its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE_WEIGHTED:{description:"Finds the weighted average of a set of values, given the values and the corresponding weights.",abstract:"Finds the weighted average of a set of values, given the values and the corresponding weights.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"values",detail:"要计算平均数的值。"},weights:{name:"weights",detail:"要应用的相应权重列表。"},additionalValues:{name:"additional_values",detail:"要计算平均数的其他值。"},additionalWeights:{name:"additional_weights",detail:"要应用的其他权重。"}}},AVERAGEA:{description:"Returns the average of its arguments, including numbers, text, and logical values.",abstract:"Returns the average of its arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range for which you want the average."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGEIF:{description:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria.",abstract:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteria:{name:"criteria",detail:'The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.'},averageRange:{name:"average_range",detail:"The actual set of cells to average. If omitted, range is used."}}},AVERAGEIFS:{description:"Returns the average (arithmetic mean) of all cells that meet multiple criteria.",abstract:"Returns the average (arithmetic mean) of all cells that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"average_range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:'Used to define the cells for which the average will be calculated. For example, the criteria can be expressed as 32, "32", ">32", "apple", or B4'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},BETA_DIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETA_INV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOM_DIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},BINOM_DIST_RANGE:{description:"Returns the probability of a trial result using a binomial distribution",abstract:"Returns the probability of a trial result using a binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},numberS:{name:"number_s",detail:"The number of successes in trials."},numberS2:{name:"number_s2",detail:"If provided, returns the probability that the number of successful trials will fall between number_s and number_s2."}}},BINOM_INV:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},CHISQ_DIST:{description:"Returns the left-tailed probability of the chi-squared distribution.",abstract:"Returns the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHISQ_DIST_RT:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV:{description:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV_RT:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_TEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE_NORM:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CONFIDENCE_T:{description:"Returns the confidence interval for a population mean, using a Student's t distribution",abstract:"Returns the confidence interval for a population mean, using a Student's t distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CORREL:{description:"Returns the correlation coefficient between two data sets",abstract:"Returns the correlation coefficient between two data sets",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COUNT:{description:"Counts the number of cells that contain numbers, and counts numbers within the list of arguments.",abstract:"Counts how many numbers are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"value 1",detail:"The first item, cell reference, or range within which you want to count numbers."},value2:{name:"value 2",detail:"Up to 255 additional items, cell references, or ranges within which you want to count numbers."}}},COUNTA:{description:`Counts cells containing any type of information, including error values and empty text ("") + If you do not need to count logical values, text, or error values`,abstract:"Counts how many values are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"value1",detail:"Required. The first argument representing the values that you want to count."},number2:{name:"value2",detail:"Optional. Additional arguments representing the values that you want to count, up to a maximum of 255 arguments."}}},COUNTBLANK:{description:"Counts the number of blank cells within a range.",abstract:"Counts the number of blank cells within a range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"range",detail:"The range from which you want to count the blank cells."}}},COUNTIF:{description:"Counts the number of cells within a range that meet the given criteria.",abstract:"Counts the number of cells within a range that meet the given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"range",detail:"The group of cells you want to count. Range can contain numbers, arrays, a named range, or references that contain numbers. Blank and text values are ignored."},criteria:{name:"criteria",detail:`A number, expression, cell reference, or text string that determines which cells will be counted. +For example, you can use a number like 32, a comparison like ">32", a cell like B4, or a word like "apples". +COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple criteria.`}}},COUNTIFS:{description:"Counts the number of cells within a range that meet multiple criteria.",abstract:"Counts the number of cells within a range that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"criteria_range1",detail:"The first range in which to evaluate the associated criteria."},criteria1:{name:"criteria1",detail:'The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},COVARIANCE_P:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COVARIANCE_S:{description:"Returns the sample covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns the sample covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},DEVSQ:{description:"Returns the sum of squares of deviations",abstract:"Returns the sum of squares of deviations",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"number1",detail:"The fist argument for which you want to calculate the sum of squared deviations."},number2:{name:"number2",detail:"The 2 to 255 arguments for which you want to calculate the sum of squared deviations."}}},EXPON_DIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST:{description:"Returns the F probability distribution",abstract:"Returns the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST_RT:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV:{description:"Returns the inverse of the F probability distribution",abstract:"Returns the inverse of the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV_RT:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_TEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},FISHER:{description:"Returns the Fisher transformation",abstract:"Returns the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"x",detail:"A numeric value for which you want the transformation."}}},FISHERINV:{description:"Returns the inverse of the Fisher transformation",abstract:"Returns the inverse of the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"y",detail:"The value for which you want to perform the inverse of the transformation."}}},FORECAST:{description:"Returns a value along a linear trend",abstract:"Returns a value along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FORECAST_ETS:{description:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",abstract:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_CONFINT:{description:"Returns a confidence interval for the forecast value at the specified target date",abstract:"Returns a confidence interval for the forecast value at the specified target date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_SEASONALITY:{description:"Returns the length of the repetitive pattern Excel detects for the specified time series",abstract:"Returns the length of the repetitive pattern Excel detects for the specified time series",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_STAT:{description:"Returns a statistical value as a result of time series forecasting",abstract:"Returns a statistical value as a result of time series forecasting",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_LINEAR:{description:"Returns a future value based on existing values",abstract:"Returns a future value based on existing values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FREQUENCY:{description:"Returns a frequency distribution as a vertical array",abstract:"Returns a frequency distribution as a vertical array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"data_array",detail:"An array of or reference to a set of values for which you want to count frequencies. If data_array contains no values, FREQUENCY returns an array of zeros."},binsArray:{name:"bins_array",detail:"An array of or reference to intervals into which you want to group the values in data_array. If bins_array contains no values, FREQUENCY returns the number of elements in data_array."}}},GAMMA:{description:"Returns the Gamma function value",abstract:"Returns the Gamma function value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"number",detail:"Input value to the gamma function."}}},GAMMA_DIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMA_INV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},GAMMALN:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN."}}},GAMMALN_PRECISE:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN.PRECISE."}}},GAUSS:{description:"Returns 0.5 less than the standard normal cumulative distribution",abstract:"Returns 0.5 less than the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},GEOMEAN:{description:"Returns the geometric mean",abstract:"Returns the geometric mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the geometric mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the geometric mean, up to a maximum of 255."}}},GROWTH:{description:"Returns values along an exponential trend",abstract:"Returns values along an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},newXs:{name:"new_x's",detail:"Are new x-values for which you want GROWTH to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."}}},HARMEAN:{description:"Returns the harmonic mean",abstract:"Returns the harmonic mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the harmonic mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the harmonic mean, up to a maximum of 255."}}},HYPGEOM_DIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},INTERCEPT:{description:"Returns the intercept of the linear regression line",abstract:"Returns the intercept of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},KURT:{description:"Returns the kurtosis of a data set",abstract:"Returns the kurtosis of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the kurtosis."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the kurtosis, up to a maximum of 255."}}},LARGE:{description:"Returns the k-th largest value in a data set",abstract:"Returns the k-th largest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th largest value."},k:{name:"k",detail:"The position (from the largest) in the array or cell range of data to return."}}},LINEST:{description:"Returns the parameters of a linear trend",abstract:"Returns the parameters of a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGEST:{description:"Returns the parameters of an exponential trend",abstract:"Returns the parameters of an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGNORM_DIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGNORM_INV:{description:"Returns the inverse of the lognormal cumulative distribution",abstract:"Returns the inverse of the lognormal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},MARGINOFERROR:{description:"Calculates the margin of error from a range of values and a confidence level.",abstract:"Calculates the margin of error from a range of values and a confidence level.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"range",detail:"The range of values used to calculate the margin of error."},confidence:{name:"confidence",detail:"The desired confidence level between (0, 1)."}}},MAX:{description:"Returns the largest value in a set of values.",abstract:"Returns the maximum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the maximum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the maximum value from, up to a maximum of 255."}}},MAXA:{description:"Returns the maximum value in a list of arguments, including numbers, text, and logical values.",abstract:"Returns the maximum value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"value1",detail:"The first number argument for which you want to find the largest value."},value2:{name:"value2",detail:"Number arguments 2 to 255 for which you want to find the largest value."}}},MAXIFS:{description:"Returns the maximum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the maximum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"sum_range",detail:"The range of cells to max."},criteriaRange1:{name:"criteria_range1 ",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as maximum. "},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 ranges."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MEDIAN:{description:"Returns the median of the given numbers",abstract:"Returns the median of the given numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the given numbers."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the given numbers, up to a maximum of 255."}}},MIN:{description:"Returns the smallest number in a set of values.",abstract:"Returns the minimum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the minimum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINA:{description:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",abstract:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range to calculate the minimum value from."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINIFS:{description:"Returns the minimum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the minimum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"min_range",detail:"The actual range of cells in which the minimum value will be determined."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as minimum. The same set of criteria works for the MAXIFS, SUMIFS and AVERAGEIFS functions."},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MODE_MULT:{description:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",abstract:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},MODE_SNGL:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOM_DIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_DIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_INV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORM_S_DIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_S_INV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PEARSON:{description:"Returns the Pearson product moment correlation coefficient",abstract:"Returns the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},PERCENTILE_EXC:{description:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",abstract:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Excludes 0 and 1)."}}},PERCENTILE_INC:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK_EXC:{description:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.EXC uses three digits (0.xxx)."}}},PERCENTRANK_INC:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},PERMUT:{description:"Returns the number of permutations for a given number of objects",abstract:"Returns the number of permutations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PERMUTATIONA:{description:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",abstract:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PHI:{description:"Returns the value of the density function for a standard normal distribution",abstract:"Returns the value of the density function for a standard normal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X is the number for which you want the density of the standard normal distribution."}}},POISSON_DIST:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},PROB:{description:"Returns the probability that values in a range are between two limits",abstract:"Returns the probability that values in a range are between two limits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"x_range",detail:"The range of numeric values of x with which there are associated probabilities."},probRange:{name:"prob_range",detail:"A set of probabilities associated with values in x_range."},lowerLimit:{name:"lower_limit",detail:"The lower bound on the value for which you want a probability."},upperLimit:{name:"upper_limit",detail:"The upper bound on the value for which you want a probability."}}},QUARTILE_EXC:{description:"Returns the quartile of a data set (Excludes 0 and 1)",abstract:"Returns the quartile of a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},QUARTILE_INC:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK_AVG:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RANK_EQ:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RSQ:{description:"Returns the square of the Pearson product moment correlation coefficient",abstract:"Returns the square of the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},SKEW:{description:"Returns the skewness of a distribution",abstract:"Returns the skewness of a distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SKEW_P:{description:"Returns the skewness of a distribution based on a population",abstract:"Returns the skewness of a distribution based on a population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SLOPE:{description:"Returns the slope of the linear regression line",abstract:"Returns the slope of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},SMALL:{description:"Returns the k-th smallest value in a data set",abstract:"Returns the k-th smallest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th smallest value."},k:{name:"k",detail:"The position (from the smallest) in the array or cell range of data to return."}}},STANDARDIZE:{description:"Returns a normalized value",abstract:"Returns a normalized value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"The value you want to normalize."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},STDEV_P:{description:"Calculates standard deviation based on the entire population given as arguments (ignores logical values and text).",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEV_S:{description:"Estimates standard deviation based on a sample (ignores logical values and text in the sample).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVA:{description:"Estimates standard deviation based on a sample, including numbers, text, and logical values.",abstract:"Estimates standard deviation based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVPA:{description:"Calculates standard deviation based on the entire population given as arguments, including text and logical values.",abstract:"Calculates standard deviation based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STEYX:{description:"Returns the standard error of the predicted y-value for each x in the regression",abstract:"Returns the standard error of the predicted y-value for each x in the regression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},T_DIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},T_DIST_2T:{description:"Returns the probability for the Student t-distribution (two-tailed)",abstract:"Returns the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_DIST_RT:{description:"Returns the probability for the Student t-distribution (right-tailed)",abstract:"Returns the probability for the Student t-distribution (right-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV:{description:"Returns the inverse of the probability for the Student t-distribution",abstract:"Returns the inverse of the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV_2T:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_TEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, T.TEST uses the one-tailed distribution. If tails = 2, T.TEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},TREND:{description:"Returns values along a linear trend",abstract:"Returns values along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},newXs:{name:"new_x's",detail:"Are new x-values for which you want TREND to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."}}},TRIMMEAN:{description:"Returns the mean of the interior of a data set",abstract:"Returns the mean of the interior of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"array",detail:"The array or range of values to trim and average."},percent:{name:"percent",detail:"The fractional number of data points to exclude from the calculation."}}},VAR_P:{description:"Calculates variance based on the entire population (ignores logical values and text in the population).",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population."}}},VAR_S:{description:"Estimates variance based on a sample (ignores logical values and text in the sample).",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population."}}},VARA:{description:"Estimates variance based on a sample, including numbers, text, and logical values",abstract:"Estimates variance based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"value1",detail:"The value number argument corresponding to a sample of a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population."}}},VARPA:{description:"Calculates variance based on the entire population, including numbers, text, and logical values",abstract:"Calculates variance based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population."}}},WEIBULL_DIST:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},Z_TEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ADDRESS:{description:`Obtain the address of a cell in a worksheet, given specified row and column numbers. For example, ADDRESS(2,3) returns $C$2. As another example, ADDRESS(77,300) returns $KN$77. You can use other functions, such as the ROW and COLUMN functions, to provide the row and column number arguments for the ADDRESS function. + + `,abstract:"Returns a reference as text to a single cell in a worksheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"row number",detail:"A numeric value that specifies the row number to use in the cell reference."},column_num:{name:"column number",detail:"A numeric value that specifies the column number to use in the cell reference."},abs_num:{name:"type of reference",detail:"A numeric value that specifies the type of reference to return."},a1:{name:"style of reference",detail:"A logical value that specifies the A1 or R1C1 reference style. In A1 style, columns are labeled alphabetically, and rows are labeled numerically. In R1C1 reference style, both columns and rows are labeled numerically. If the A1 argument is TRUE or omitted, the ADDRESS function returns an A1-style reference; if FALSE, the ADDRESS function returns an R1C1-style reference."},sheet_text:{name:"worksheet name",detail:'A text value that specifies the name of the worksheet to be used as the external reference. For example, the formula =ADDRESS(1,1,,,"Sheet2") returns Sheet2!$A$1. If the sheet_text argument is omitted, no sheet name is used, and the address returned by the function refers to a cell on the current sheet.'}}},AREAS:{description:"Returns the number of areas in a reference",abstract:"Returns the number of areas in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells and can refer to multiple areas."}}},CHOOSE:{description:"Chooses a value from a list of values.",abstract:"Chooses a value from a list of values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"index_num",detail:`Specifies which value argument is selected. Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number between 1 and 254. +If index_num is 1, CHOOSE returns value1; if it is 2, CHOOSE returns value2; and so on. +If index_num is less than 1 or greater than the number of the last value in the list, CHOOSE returns the #VALUE! error value. +If index_num is a fraction, it is truncated to the lowest integer before being used.`},value1:{name:"value1",detail:"CHOOSE selects a value or an action to perform based on index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or text."},value2:{name:"value2",detail:"1 to 254 value arguments."}}},CHOOSECOLS:{description:"Returns the specified columns from an array",abstract:"Returns the specified columns from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"array",detail:"The array containing the columns to be returned in the new array."},colNum1:{name:"col_num1",detail:"The first column to be returned."},colNum2:{name:"col_num2",detail:"Additional columns to be returned."}}},CHOOSEROWS:{description:"Returns the specified rows from an array",abstract:"Returns the specified rows from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"array",detail:"The array containing the rows to be returned in the new array."},rowNum1:{name:"row_num1",detail:"The first row number to be returned."},rowNum2:{name:"row_num2",detail:"Additional row numbers to be returned."}}},COLUMN:{description:"Returns the column number of the given cell reference.",abstract:"Returns the column number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want to return the column number."}}},COLUMNS:{description:"Returns the number of columns in an array or reference.",abstract:"Returns the number of columns in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"array",detail:"An array or array formula, or a reference to a range of cells for which you want the number of columns."}}},DROP:{description:"Excludes a specified number of rows or columns from the start or end of an array",abstract:"Excludes a specified number of rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"array",detail:"The array from which to drop rows or columns."},rows:{name:"rows",detail:"The number of rows to drop. A negative value drops from the end of the array."},columns:{name:"columns",detail:"The number of columns to exclude. A negative value drops from the end of the array."}}},EXPAND:{description:"Expands or pads an array to specified row and column dimensions",abstract:"Expands or pads an array to specified row and column dimensions",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"array",detail:"The array to expand."},rows:{name:"rows",detail:"The number of rows in the expanded array. If missing, rows will not be expanded."},columns:{name:"columns",detail:"The number of columns in the expanded array. If missing, columns will not be expanded."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},FILTER:{description:"Filters a range of data based on criteria you define",abstract:"Filters a range of data based on criteria you define",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"array",detail:"The range or array to filter."},include:{name:"include",detail:"An array of Boolean values ​​where TRUE indicates that a row or column is to be retained."},ifEmpty:{name:"if_empty",detail:"If no items are reserved, return."}}},FORMULATEXT:{description:"Returns the formula at the given reference as text",abstract:"Returns the formula at the given reference as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells."}}},GETPIVOTDATA:{description:"Returns data stored in a PivotTable report",abstract:"Returns data stored in a PivotTable report",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},HLOOKUP:{description:"Looks in the top row of an array and returns the value of the indicated cell",abstract:"Looks in the top row of an array and returns the value of the indicated cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to be found in the first row of the table. Lookup_value can be a value, a reference, or a text string."},tableArray:{name:"table_array",detail:"A table of information in which data is looked up. Use a reference to a range or a range name."},rowIndexNum:{name:"row_index_num",detail:"The row number in table_array from which the matching value will be returned. A row_index_num of 1 returns the first row value in table_array, a row_index_num of 2 returns the second row value in table_array, and so on. "},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match."}}},HSTACK:{description:"Appends arrays horizontally and in sequence to return a larger array",abstract:"Appends arrays horizontally and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},HYPERLINK:{description:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",abstract:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hyperlink-function-333c7ce6-c5ae-4164-9c47-7de9b76f577f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},IMAGE:{description:"Returns an image from a given source",abstract:"Returns an image from a given source",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},INDEX:{description:"Returns the reference of the cell at the intersection of a particular row and column. If the reference is made up of non-adjacent selections, you can pick the selection to look in.",abstract:"Uses an index to choose a value from a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"reference",detail:"A reference to one or more cell ranges."},rowNum:{name:"row_num",detail:"The number of the row in reference from which to return a reference."},columnNum:{name:"column_num",detail:"The number of the column in reference from which to return a reference."},areaNum:{name:"area_num",detail:"Selects a range in reference from which to return the intersection of row_num and column_num."}}},INDIRECT:{description:"Returns the reference specified by a text string. References are immediately evaluated to display their contents.",abstract:"Returns a reference indicated by a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"ref_text",detail:"A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. "},a1:{name:"a1",detail:"A logical value that specifies what type of reference is contained in the cell ref_text."}}},LOOKUP:{description:"When you need to look in a single row or column and find a value from the same position in a second row or column",abstract:"Looks up values in a vector or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"A value that LOOKUP searches for in the first vector. Lookup_value can be a number, text, a logical value, or a name or reference that refers to a value."},lookupVectorOrArray:{name:"lookup_vectorOrArray",detail:"A range that contains only one row or one column"},resultVector:{name:"result_vector",detail:"A range that contains only one row or column. The result_vector argument must be the same size as lookup_vector."}}},MATCH:{description:"The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.",abstract:"Looks up values in a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value that you want to match in lookup_array."},lookupArray:{name:"lookup_array",detail:"The range of cells being searched."},matchType:{name:"match_type",detail:"The number -1, 0, or 1."}}},OFFSET:{description:"Returns a reference offset from a given reference",abstract:"Returns a reference offset from a given reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"reference",detail:"The reference from which you want to base the offset."},rows:{name:"rows",detail:"The number of rows, up or down, that you want the upper-left cell to refer to."},cols:{name:"columns",detail:"The number of columns, to the left or right, that you want the upper-left cell of the result to refer to."},height:{name:"height",detail:"The height, in number of rows, that you want the returned reference to be. Height must be a positive number."},width:{name:"width",detail:"The width, in number of columns, that you want the returned reference to be. Width must be a positive number."}}},ROW:{description:"Returns the row number of a reference",abstract:"Returns the row number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want the row number."}}},ROWS:{description:"Returns the number of rows in an array or reference.",abstract:"Returns the number of rows in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"array",detail:"An array, an array formula, or a reference to a range of cells for which you want the number of rows."}}},RTD:{description:"Retrieves real-time data from a program that supports COM automation",abstract:"Retrieves real-time data from a program that supports COM automation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},SORT:{description:"Sorts the contents of a range or array",abstract:"Sorts the contents of a range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},sortIndex:{name:"sort_index",detail:"A number indicating the sort order (by row or by column)."},sortOrder:{name:"sort_order",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byCol:{name:"by_col",detail:"Logical value indicating the desired sort direction; FALSE sorts by rows (default), TRUE sorts by columns."}}},SORTBY:{description:"Sorts the contents of a range or array based on the values in a corresponding range or array",abstract:"Sorts the contents of a range or array based on the values in a corresponding range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},byArray1:{name:"by_array1",detail:"The range or array to sort based on."},sortOrder1:{name:"sort_order1",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byArray2:{name:"by_array2",detail:"The range or array to sort based on."},sortOrder2:{name:"sort_order2",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."}}},TAKE:{description:"Returns a specified number of contiguous rows or columns from the start or end of an array",abstract:"Returns a specified number of contiguous rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"array",detail:"The array from which to take rows or columns."},rows:{name:"rows",detail:"The number of rows to take. A negative value takes from the end of the array."},columns:{name:"columns",detail:"The number of columns to take. A negative value takes from the end of the array."}}},TOCOL:{description:"Returns the array in a single column",abstract:"Returns the array in a single column",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a column."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TOROW:{description:"Returns the array in a single row",abstract:"Returns the array in a single row",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a row."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TRANSPOSE:{description:"Returns the transpose of an array",abstract:"Returns the transpose of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"array",detail:"A range of cells or an array in a worksheet."}}},UNIQUE:{description:"Returns a list of unique values in a list or range",abstract:"Returns a list of unique values in a list or range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"array",detail:"The range or array from which unique rows or columns are returned."},byCol:{name:"by_col",detail:"Is a logical value: compares rows to each other and returns unique values ​​= FALSE, or is omitted; compares columns to each other and returns unique values ​​= TRUE."},exactlyOnce:{name:"exactly_once",detail:"Is a logical value: returns rows or columns from the array that appear only once = TRUE; returns all distinct rows or columns from the array = FALSE, or has been omitted."}}},VLOOKUP:{description:"Use VLOOKUP when you need to find things in a table or a range by row. For example, look up a price of an automotive part by the part number, or find an employee name based on their employee ID.",abstract:"Looks in the first column of an array and moves across the row to return the value of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value you want to look up. The value you want to look up must be in the first column of the range of cells you specify in the table_array argument."},tableArray:{name:"table_array",detail:"The range of cells in which the VLOOKUP will search for the lookup_value and the return value. You can use a named range or a table, and you can use names in the argument instead of cell references. "},colIndexNum:{name:"col_index_num",detail:"The column number (starting with 1 for the left-most column of table_array) that contains the return value."},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want VLOOKUP to find an approximate or an exact match: Approximate match - 1/TRUE, Exact match - 0/FALSE"}}},VSTACK:{description:"Appends arrays vertically and in sequence to return a larger array",abstract:"Appends arrays vertically and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},WRAPCOLS:{description:"Wraps the provided row or column of values by columns after a specified number of elements",abstract:"Wraps the provided row or column of values by columns after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each column."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},WRAPROWS:{description:"Wraps the provided row or column of values by rows after a specified number of elements",abstract:"Wraps the provided row or column of values by rows after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each row."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},XLOOKUP:{description:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",abstract:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to search for, If omitted, XLOOKUP returns blank cells it finds in lookup_array. "},lookupArray:{name:"lookup_array",detail:"The array or range to search"},returnArray:{name:"return_array",detail:"The array or range to return"},ifNotFound:{name:"if_not_found",detail:"Where a valid match is not found, return the [if_not_found] text you supply. If a valid match is not found, and [if_not_found] is missing, #N/A is returned."},matchMode:{name:"match_mode",detail:"Specify the match type: 0 - Exact match. If none found, return #N/A. This is the default. -1 - Exact match. If none found, return the next smaller item. 1 - Exact match. If none found, return the next larger item. 2 - A wildcard match where *, ?, and ~ have special meaning."},searchMode:{name:"search_mode",detail:"Specify the search mode to use: 1 - Perform a search starting at the first item. This is the default. -1 - Perform a reverse search starting at the last item. 2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. -2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned."}}},XMATCH:{description:"Searches for a specified item in an array or range of cells, and then returns the item's relative position.",abstract:"Returns the relative position of an item in an array or range of cells.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The lookup value"},lookupArray:{name:"lookup_array",detail:"The array or range to search"},matchMode:{name:"match_mode",detail:`Specify the match type: +0 - Exact match (default) +-1 - Exact match or next smallest item +1 - Exact match or next largest item +2 - A wildcard match where *, ?, and ~ have special meaning.`},searchMode:{name:"search_mode",detail:`Specify the search type: +1 - Search first-to-last (default) +-1 - Search last-to-first (reverse search). +2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. +-2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned.`}}}},...{DAVERAGE:{description:"Returns the average of selected database entries",abstract:"Returns the average of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNT:{description:"Counts the cells that contain numbers in a database",abstract:"Counts the cells that contain numbers in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DCOUNTA:{description:"Counts nonblank cells in a database",abstract:"Counts nonblank cells in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DGET:{description:"Extracts from a database a single record that matches the specified criteria",abstract:"Extracts from a database a single record that matches the specified criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMAX:{description:"Returns the maximum value from selected database entries",abstract:"Returns the maximum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DMIN:{description:"Returns the minimum value from selected database entries",abstract:"Returns the minimum value from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DPRODUCT:{description:"Multiplies the values in a particular field of records that match the criteria in a database",abstract:"Multiplies the values in a particular field of records that match the criteria in a database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEV:{description:"Estimates the standard deviation based on a sample of selected database entries",abstract:"Estimates the standard deviation based on a sample of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSTDEVP:{description:"Calculates the standard deviation based on the entire population of selected database entries",abstract:"Calculates the standard deviation based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DSUM:{description:"Adds the numbers in the field column of records in the database that match the criteria",abstract:"Adds the numbers in the field column of records in the database that match the criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVAR:{description:"Estimates variance based on a sample from selected database entries",abstract:"Estimates variance based on a sample from selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}},DVARP:{description:"Calculates variance based on the entire population of selected database entries",abstract:"Calculates variance based on the entire population of selected database entries",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"database",detail:"The range of cells that makes up the list or database."},field:{name:"field",detail:"Indicates which column is used in the function."},criteria:{name:"criteria",detail:"The range of cells that contains the conditions you specify."}}}},...{ASC:{description:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",abstract:"Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any full-width letters, text is not changed."}}},ARRAYTOTEXT:{description:"Returns an array of text values from any specified range",abstract:"Returns an array of text values from any specified range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"array",detail:"The array to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},BAHTTEXT:{description:"Converts a number to text, using the ß (baht) currency format",abstract:"Converts a number to text, using the ß (baht) currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"number",detail:"A number you want to convert to text, or a reference to a cell containing a number, or a formula that evaluates to a number."}}},CHAR:{description:"Returns the character specified by the code number",abstract:"Returns the character specified by the code number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"number",detail:"A number between 1 and 255 specifying which character you want. The character is from the character set used by your computer."}}},CLEAN:{description:"Removes all nonprintable characters from text",abstract:"Removes all nonprintable characters from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"text",detail:"Any worksheet information from which you want to remove nonprintable characters."}}},CODE:{description:"Returns a numeric code for the first character in a text string",abstract:"Returns a numeric code for the first character in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"text",detail:"The text for which you want the code of the first character."}}},CONCAT:{description:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",abstract:"Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"text1",detail:"Text item to be joined. A string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 253 text arguments for the text items. Each can be a string, or array of strings, such as a range of cells."}}},CONCATENATE:{description:"Joins several text items into one text item",abstract:"Joins several text items into one text item",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"text1",detail:"The first item to join. The item can be a text value, number, or cell reference."},text2:{name:"text2",detail:"Additional text items to join. You can have up to 255 items, up to a total of 8,192 characters."}}},DBCS:{description:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",abstract:"Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"text",detail:"The text or a reference to a cell that contains the text you want to change. If text does not contain any half-width English letters or katakana, text is not changed."}}},DOLLAR:{description:"Converts a number to text using currency format",abstract:"Converts a number to text using currency format",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"number",detail:"A number, a reference to a cell containing a number, or a formula that evaluates to a number."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."}}},EXACT:{description:"Checks to see if two text values are identical",abstract:"Checks to see if two text values are identical",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926"}],functionParameter:{text1:{name:"text1",detail:"The first text string."},text2:{name:"text2",detail:"The second text string."}}},FIND:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FINDB:{description:"Finds one text value within another (case-sensitive)",abstract:"Finds one text value within another (case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},FIXED:{description:"Formats a number as text with a fixed number of decimals",abstract:"Formats a number as text with a fixed number of decimals",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a"}],functionParameter:{number:{name:"number",detail:"The number you want to round and convert to text."},decimals:{name:"decimals",detail:"The number of digits to the right of the decimal point. If this is negative, the number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2."},noCommas:{name:"no_commas",detail:"A logical value that, if TRUE, prevents FIXED from including commas in the returned text."}}},LEFT:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want LEFT to extract."}}},LEFTB:{description:"Returns the leftmost characters from a text value",abstract:"Returns the leftmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want LEFTB to extract, based on bytes."}}},LEN:{description:"Returns the number of characters in a text string",abstract:"Returns the number of characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LENB:{description:"Returns the number of bytes used to represent the characters in a text string.",abstract:"Returns the number of bytes used to represent the characters in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"text",detail:"The text whose length you want to find. Spaces count as characters."}}},LOWER:{description:"Converts text to lowercase.",abstract:"Converts text to lowercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"text",detail:"The text you want to convert to lowercase."}}},MID:{description:"Returns a specific number of characters from a text string starting at the position you specify.",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want MID to extract."}}},MIDB:{description:"Returns a specific number of characters from a text string starting at the position you specify",abstract:"Returns a specific number of characters from a text string starting at the position you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},startNum:{name:"start_num",detail:"The position of the first character you want to extract in text."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want MIDB to extract, based on bytes."}}},NUMBERSTRING:{description:"Convert numbers to Chinese strings",abstract:"Convert numbers to Chinese strings",links:[{title:"Instruction",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"number",detail:"The value converted to a Chinese string."},type:{name:"type",detail:`The type of the returned result. +1. Chinese lowercase +2. Chinese uppercase +3. Reading and Writing Chinese Characters`}}},NUMBERVALUE:{description:"Converts text to number in a locale-independent manner",abstract:"Converts text to number in a locale-independent manner",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"text",detail:"The text to convert to a number."},decimalSeparator:{name:"decimal_separator",detail:"The character used to separate the integer and fractional part of the result."},groupSeparator:{name:"group_separator",detail:"The character used to separate groupings of numbers."}}},PHONETIC:{description:"Extracts the phonetic (furigana) characters from a text string",abstract:"Extracts the phonetic (furigana) characters from a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},PROPER:{description:"Capitalizes the first letter in each word of a text value",abstract:"Capitalizes the first letter in each word of a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94"}],functionParameter:{text:{name:"text",detail:"Text enclosed in quotation marks, a formula that returns text, or a reference to a cell containing the text you want to partially capitalize."}}},REGEXEXTRACT:{description:"Extracts the first matching substrings according to a regular expression.",abstract:"Extracts the first matching substrings according to a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The input text."},regularExpression:{name:"regular_expression",detail:"The first part of text that matches this expression will be returned."}}},REGEXMATCH:{description:"Whether a piece of text matches a regular expression.",abstract:"Whether a piece of text matches a regular expression.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text to be tested against the regular expression."},regularExpression:{name:"regular_expression",detail:"The regular expression to test the text against."}}},REGEXREPLACE:{description:"Replaces part of a text string with a different text string using regular expressions.",abstract:"Replaces part of a text string with a different text string using regular expressions.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=en"}],functionParameter:{text:{name:"text",detail:"The text, a part of which will be replaced."},regularExpression:{name:"regular_expression",detail:"The regular expression. All matching instances in text will be replaced."},replacement:{name:"replacement",detail:"The text which will be inserted into the original text."}}},REPLACE:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numChars:{name:"num_chars",detail:"The number of characters in old_text that you want REPLACE to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPLACEB:{description:"Replaces characters within text",abstract:"Replaces characters within text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"old_text",detail:"Text in which you want to replace some characters."},startNum:{name:"start_num",detail:"The position of the character in old_text that you want to replace with new_text."},numBytes:{name:"num_bytes",detail:"The number of bytes in old_text that you want REPLACEB to replace with new_text."},newText:{name:"new_text",detail:"The text that will replace characters in old_text."}}},REPT:{description:"Repeats text a given number of times",abstract:"Repeats text a given number of times",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061"}],functionParameter:{text:{name:"text",detail:"The text you want to repeat."},numberTimes:{name:"number_times",detail:"A positive number specifying the number of times to repeat text."}}},RIGHT:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numChars:{name:"num_chars",detail:"Specifies the number of characters you want RIGHT to extract."}}},RIGHTB:{description:"Returns the rightmost characters from a text value",abstract:"Returns the rightmost characters from a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"text",detail:"The text string containing the characters you want to extract."},numBytes:{name:"num_bytes",detail:"Specifies the number of characters you want RIGHTB to extract, based on bytes."}}},SEARCH:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SEARCHB:{description:"Finds one text value within another (not case-sensitive)",abstract:"Finds one text value within another (not case-sensitive)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"find_text",detail:"The text you want to find."},withinText:{name:"within_text",detail:"The text containing the text you want to find."},startNum:{name:"start_num",detail:"Specifies the character at which to start the search. If you omit start_num, it is assumed to be 1."}}},SUBSTITUTE:{description:"Substitutes new text for old text in a text string",abstract:"Substitutes new text for old text in a text string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332"}],functionParameter:{text:{name:"text",detail:"The text or the reference to a cell containing text for which you want to substitute characters."},oldText:{name:"old_text",detail:"The text you want to replace."},newText:{name:"new_text",detail:"The text you want to replace old_text with."},instanceNum:{name:"instance_num",detail:"Specifies which occurrence of old_text you want to replace with new_text. If you specify instance_num, only that instance of old_text is replaced. Otherwise, every occurrence of old_text in text is changed to new_text."}}},T:{description:"Converts its arguments to text",abstract:"Converts its arguments to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-function-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"value",detail:"The value you want to test."}}},TEXT:{description:"Formats a number and converts it to text",abstract:"Formats a number and converts it to text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"value",detail:"A numeric value that you want to be converted into text."},formatText:{name:"format_text",detail:"A text string that defines the formatting that you want to be applied to the supplied value."}}},TEXTAFTER:{description:"Returns text that occurs after given character or string",abstract:"Returns text that occurs after given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTBEFORE:{description:"Returns text that occurs before a given character or string",abstract:"Returns text that occurs before a given character or string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"text",detail:"The text you are searching within. Wildcard characters not allowed."},delimiter:{name:"delimiter",detail:"The text that marks the point after which you want to extract."},instanceNum:{name:"instance_num",detail:"The instance of the delimiter after which you want to extract the text."},matchMode:{name:"match_mode",detail:"Determines whether the text search is case-sensitive. The default is case-sensitive."},matchEnd:{name:"match_end",detail:"Treats the end of text as a delimiter. By default, the text is an exact match."},ifNotFound:{name:"if_not_found",detail:"Value returned if no match is found. By default, #N/A is returned."}}},TEXTJOIN:{description:"Text: Combines the text from multiple ranges and/or strings",abstract:"Text: Combines the text from multiple ranges and/or strings",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"delimiter",detail:"A text string, either empty, or one or more characters enclosed by double quotes, or a reference to a valid text string."},ignoreEmpty:{name:"ignore_empty",detail:"If TRUE, ignores empty cells."},text1:{name:"text1",detail:"Text item to be joined. A text string, or array of strings, such as a range of cells."},text2:{name:"text2",detail:"Additional text items to be joined. There can be a maximum of 252 text arguments for the text items, including text1. Each can be a text string, or array of strings, such as a range of cells."}}},TEXTSPLIT:{description:"Splits text strings by using column and row delimiters",abstract:"Splits text strings by using column and row delimiters",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"text",detail:"The text to split."},colDelimiter:{name:"col_delimiter",detail:"The character or string by which to split the column."},rowDelimiter:{name:"row_delimiter",detail:"The character or string on which to split the line."},ignoreEmpty:{name:"ignore_empty",detail:"Whether to ignore empty cells. The default is FALSE."},matchMode:{name:"match_mode",detail:"Searches for a delimiter match in the text. By default, a case-sensitive match is done."},padWith:{name:"pad_with",detail:"The value to use for padding. By default, #N/A is used."}}},TRIM:{description:"Removes all spaces from text except for single spaces between words.",abstract:"Removes spaces from text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"text",detail:"The text from which you want spaces removed."}}},UNICHAR:{description:"Returns the Unicode character that is references by the given numeric value",abstract:"Returns the Unicode character that is references by the given numeric value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8"}],functionParameter:{number:{name:"number",detail:"Number is the Unicode number that represents the character."}}},UNICODE:{description:"Returns the number (code point) that corresponds to the first character of the text",abstract:"Returns the number (code point) that corresponds to the first character of the text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f"}],functionParameter:{text:{name:"text",detail:"Text is the character for which you want the Unicode value."}}},UPPER:{description:"Converts text to uppercase",abstract:"Converts text to uppercase",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"text",detail:"The text you want converted to uppercase."}}},VALUE:{description:"Converts a text argument to a number",abstract:"Converts a text argument to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2"}],functionParameter:{text:{name:"text",detail:"The text enclosed in quotation marks or a reference to a cell containing the text you want to convert."}}},VALUETOTEXT:{description:"Returns text from any specified value",abstract:"Returns text from any specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"value",detail:"The value to return as text."},format:{name:"format",detail:`The format of the returned data. It can be one of two values: +0 Default. Concise format that is easy to read. +1 Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.`}}},CALL:{description:"Calls a procedure in a dynamic link library or code resource",abstract:"Calls a procedure in a dynamic link library or code resource",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},EUROCONVERT:{description:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",abstract:"Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},REGISTER_ID:{description:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",abstract:"Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{AND:{description:"Returns TRUE if all of its arguments are TRUE",abstract:"Returns TRUE if all of its arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},BYCOL:{description:"Applies a LAMBDA to each column and returns an array of the results",abstract:"Applies a LAMBDA to each column and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by column."},lambda:{name:"lambda",detail:"A LAMBDA that takes a column as a single parameter and calculates one result. The LAMBDA takes a single parameter: A column from array."}}},BYROW:{description:"Applies a LAMBDA to each row and returns an array of the results",abstract:"Applies a LAMBDA to each row and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by row."},lambda:{name:"lambda",detail:"A LAMBDA that takes a row as a single parameter and calculates one result. The LAMBDA takes a single parameter: A row from array."}}},FALSE:{description:"Returns the logical value FALSE.",abstract:"Returns the logical value FALSE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"Specifies a logical test to perform",abstract:"Specifies a logical test to perform",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"logical_test",detail:"The condition you want to test."},valueIfTrue:{name:"value_if_true",detail:"The value that you want returned if the result of logical_test is TRUE."},valueIfFalse:{name:"value_if_false",detail:"The value that you want returned if the result of logical_test is FALSE."}}},IFERROR:{description:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",abstract:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for an error."},valueIfError:{name:"value_if_error",detail:"The value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!."}}},IFNA:{description:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",abstract:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for the #N/A error value."},valueIfNa:{name:"value_if_na",detail:"The value to return if the formula evaluates to the #N/A error value."}}},IFS:{description:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",abstract:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"logical_test1",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue1:{name:"value_if_true1",detail:"Result to be returned if logical_test1 evaluates to TRUE. Can be empty."},logicalTest2:{name:"logical_test2",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue2:{name:"value_if_true2",detail:"Result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN corresponds with a condition logical_testN. Can be empty."}}},LAMBDA:{description:"Use a LAMBDA function to create custom, reusable functions and call them by a friendly name. The new function is available throughout the workbook and called like native Excel functions.",abstract:"Create custom, reusable functions and call them by a friendly name",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"parameter",detail:"A value that you want to pass to the function, such as a cell reference, string or number. You can enter up to 253 parameters. This argument is optional."},calculation:{name:"calculation",detail:"The formula you want to execute and return as the result of the function. It must be the last argument and it must return a result. This argument is required."}}},LET:{description:"Assigns names to calculation results",abstract:"Assigns names to calculation results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"name1",detail:"The first name to assign. Must start with a letter. Cannot be the output of a formula or conflict with range syntax."},nameValue1:{name:"name_value1",detail:"The value that is assigned to name1."},calculationOrName2:{name:"calculation_or_name2",detail:`One of the following: +1.A calculation that uses all names within the LET function. This must be the last argument in the LET function. +2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required.`},nameValue2:{name:"name_value2",detail:"The value that is assigned to calculation_or_name2."},calculationOrName3:{name:"calculation_or_name3",detail:`One of the following: +1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation. +2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"is the units for number."},toUnit:{name:"to_unit",detail:"is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 2 to 255 complex numbers",abstract:"Returns the product of from 2 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",abstract:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",abstract:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",abstract:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{description:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",abstract:"Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or the top 10 students.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{description:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",abstract:"Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Excel.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"Returns the number of items in a set.",abstract:"Returns the number of items in a set.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"Returns an aggregated value from the cube.",abstract:"Returns an aggregated value from the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Returns a URL-encoded string",abstract:"Returns a URL-encoded string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"text",detail:"A string to be URL encoded"}}},FILTERXML:{description:"Returns specific data from the XML content by using the specified XPath",abstract:"Returns specific data from the XML content by using the specified XPath",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"Returns data from a web service",abstract:"Returns data from a web service",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"Constrains an array result to a specified size.",abstract:"Constrains an array result to a specified size.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"input_range",detail:"The range to constrain."},numRows:{name:"num_rows",detail:"The number of rows the result should contain."},numCols:{name:"num_cols",detail:"The number of columns the result should contain"}}},FLATTEN:{description:"Flattens all the values from one or more ranges into a single column.",abstract:"Flattens all the values from one or more ranges into a single column.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"range1",detail:"The first range to flatten."},range2:{name:"range2",detail:"Additional ranges to flatten."}}}},...{}},prompt:{helpExample:"EXEMPLE",helpAbstract:"À PROPOS",required:"Requis.",optional:"Optionnel."},error:{title:"Erreur",divByZero:"Erreur de division par zéro",name:"Erreur de nom invalide",value:"Erreur de valeur",num:"Erreur de nombre",na:"Erreur de valeur non disponible",cycle:"Erreur de référence circulaire",ref:"Erreur de référence de cellule invalide",spill:"La plage de débordement n'est pas vide",calc:"Erreur de calcul",error:"Erreur",connect:"Récupération des données",null:"Erreur nulle"},functionType:{financial:"Financier",date:"Date & Heure",math:"Math & Trigo",statistical:"Statistique",lookup:"Recherche & Référence",database:"Base de données",text:"Texte",logical:"Logique",information:"Information",engineering:"Ingénierie",cube:"Cube",compatibility:"Compatibilité",web:"Web",array:"Tableau",univer:"Univer",user:"Définies par l'utilisateur",definedname:"Nom défini"},moreFunctions:{confirm:"Confirmer",prev:"Précédent",next:"Suivant",searchFunctionPlaceholder:"Rechercher une fonction",allFunctions:"Toutes les fonctions",syntax:"SYNTAXE"},operation:{pasteFormula:"Coller la formule"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/fr-FR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsNumfmtUiFrFR=t())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"Pourcentage",title:"Format de nombre",numfmtType:"Types de format",cancel:"Annuler",confirm:"Confirmer",general:"Général",accounting:"Comptabilité",text:"Texte",number:"Nombre",currency:"Devise",date:"Date",time:"Heure",thousandthPercentile:"Séparateur de milliers",preview:"Aperçu",dateTime:"Date et heure",decimalLength:"Nombre de décimales",currencyType:"Symbole de devise",moreFmt:"Formats",financialValue:"Valeur financière",roundingCurrency:"Arrondir la devise",timeDuration:"Durée",currencyDes:"Le format de devise est utilisé pour représenter des valeurs monétaires générales. Le format de comptabilité aligne une colonne de valeurs avec des points décimaux",accountingDes:"Le format de nombre de comptabilité aligne une colonne de valeurs avec des symboles de devise et des points décimaux",dateType:"Type de date",dateDes:"Le format de date présente les valeurs de la série date et heure sous forme de valeurs de date.",negType:"Type de nombre négatif",generalDes:"Le format général ne contient aucun format de nombre spécifique.",thousandthPercentileDes:"Le format de percentile est utilisé pour la représentation des nombres ordinaires. Les formats monétaires et comptables fournissent un format spécialisé pour les calculs de valeurs monétaires.",addDecimal:"Augmenter les décimales",subtractDecimal:"Diminuer les décimales",customFormat:"Format personnalisé",customFormatDes:"Générer des formats de nombre personnalisés basés sur des formats existants."}}}}); + + +// locale/fr-FR +(function(e,r){typeof exports=="object"&&typeof module<"u"?module.exports=r(require("@univerjs/core"),require("@univerjs/design/locale/fr-FR"),require("@univerjs/docs-ui/locale/fr-FR"),require("@univerjs/sheets/locale/fr-FR"),require("@univerjs/sheets-formula/locale/fr-FR"),require("@univerjs/sheets-formula-ui/locale/fr-FR"),require("@univerjs/sheets-numfmt-ui/locale/fr-FR"),require("@univerjs/sheets-ui/locale/fr-FR"),require("@univerjs/ui/locale/fr-FR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/fr-FR","@univerjs/docs-ui/locale/fr-FR","@univerjs/sheets/locale/fr-FR","@univerjs/sheets-formula/locale/fr-FR","@univerjs/sheets-formula-ui/locale/fr-FR","@univerjs/sheets-numfmt-ui/locale/fr-FR","@univerjs/sheets-ui/locale/fr-FR","@univerjs/ui/locale/fr-FR"],r):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreFrFR=r(e.UniverCore,e.UniverDesignFrFR,e.UniverDocsUiFrFR,e.UniverSheetsFrFR,e.UniverSheetsFormulaFrFR,e.UniverSheetsFormulaUiFrFR,e.UniverSheetsNumfmtUiFrFR,e.UniverSheetsUiFrFR,e.UniverUiFrFR))})(this,function(e,r,i,s,u,n,F,f,t){"use strict";return e.merge({},r,i,s,u,n,F,f,t)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/ru-RU.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/ru-RU.js new file mode 100644 index 00000000..80a8d2fa --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/ru-RU.js @@ -0,0 +1,75 @@ +// @univerjs/ui/locale/ru-RU +(function(i,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define(e):(i=typeof globalThis<"u"?globalThis:i||self,i.UniverUiRuRU=e())})(this,function(){"use strict";return{ribbon:{start:"Начало",insert:"Вставка",formulas:"Формулы",data:"Данные",view:"Вид",others:"Другие",more:"Больше"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"Microsoft YaHei",SimSun:"SimSun",SimHei:"SimHei",Kaiti:"Kaiti",FangSong:"FangSong",NSimSun:"NSimSun",STXinwei:"STXinwei",STXingkai:"STXingkai",STLiti:"STLiti",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"Ярлыки"},shortcut:{undo:"Отменить",redo:"Повторить",cut:"Вырезать",copy:"Копировать",paste:"Вставить","shortcut-panel":"Переключить панель ярлыков"},"common-edit":"Общие команды редактирования","toggle-shortcut-panel":"Переключить панель ярлыков",clipboard:{authentication:{title:"Доступ запрещен",content:"Пожалуйста, разрешите Univer доступ к вашему буферу обмена."}},textEditor:{formulaError:"Пожалуйста, введите корректную формулу, например =SUM(A1)",rangeError:"Пожалуйста, введите корректный диапазон, например A1:B10"},rangeSelector:{title:"Выберите диапазон данных",addAnotherRange:"Добавить диапазон",buttonTooltip:"Выбрать диапазон данных",placeHolder:"Выберите диапазон или введите.",confirm:"Подтвердить",cancel:"Отменить"},"global-shortcut":"Глобальные ярлыки","zoom-slider":{resetTo:"Сбросить до"}}}); + + +// @univerjs/docs-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiRuRU=t())})(this,function(){"use strict";return{toolbar:{undo:"Отменить",redo:"Повторить",font:"Шрифт",fontSize:"Размер шрифта",bold:"Полужирный",italic:"Курсив",strikethrough:"Зачеркнутый",subscript:"Нижний индекс",superscript:"Верхний индекс",underline:"Подчеркнутый",textColor:{main:"Цвет текста",right:"Выбрать цвет"},fillColor:{main:"Цвет фона текста",right:"Выбрать цвет"},table:{main:"Table",insert:"Insert Table",colCount:"Column count",rowCount:"Row count"},resetColor:"Сбросить",order:"Упорядоченный список",unorder:"Неупорядоченный список",alignLeft:"Выровнять по левому краю",alignCenter:"Выровнять по центру",alignRight:"Выровнять по правому краю",alignJustify:"Выровнять по ширине",headerFooter:"Header & Footer",checklist:"Task list",documentFlavor:"Modern Mode"},table:{insert:"Insert",insertRowAbove:"Insert row above",insertRowBelow:"Insert row below",insertColumnLeft:"Insert column left",insertColumnRight:"Insert column right",delete:"Table delete",deleteRows:"Delete row",deleteColumns:"Delete column",deleteTable:"Delete table"},headerFooter:{header:"Header",footer:"Footer",panel:"Header & Footer Settings",firstPageCheckBox:"Different first page",oddEvenCheckBox:"Different odd and even pages",headerTopMargin:"Header top margin(px)",footerBottomMargin:"Footer bottom margin(px)",closeHeaderFooter:"Close header & footer",disableText:"Header & footer settings are disabled"},doc:{menu:{paragraphSetting:"Paragraph Setting"},slider:{paragraphSetting:"Paragraph Setting"},paragraphSetting:{alignment:"Alignment",indentation:"Indentation",left:"Left",right:"Right",firstLine:"First Line",hanging:"Hanging",spacing:"Spacing",before:"Before",after:"After",lineSpace:"Line Space",multiSpace:"Multi Space",fixedValue:"Fixed Value(px)"}}}}); + + +// @univerjs/sheets/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsRuRU=t())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(Копия{0})",sheet:"Лист"},info:{overlappingSelections:"Невозможно использовать эту команду на пересекающихся выделениях",acrossMergedCell:"Через объединенную ячейку",partOfCell:"Выделена только часть объединенной ячейки",hideSheet:"После скрытия этого листа не будет видно ни одного листа"}}}}); + + +// @univerjs/sheets-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsUiRuRU=t())})(this,function(){"use strict";return{spreadsheetLabel:"Электронная таблица",spreadsheetRightLabel:"больше листов",toolbar:{undo:"Отменить",redo:"Повторить",formatPainter:"Копировать формат",font:"Шрифт",fontSize:"Размер шрифта",bold:"Жирный",italic:"Курсив",strikethrough:"Зачеркнутый",subscript:"Нижний индекс",superscript:"Верхний индекс",underline:"Подчеркнутый",textColor:{main:"Цвет текста",right:"Выбрать цвет"},resetColor:"Сбросить",fillColor:{main:"Цвет заливки",right:"Выбрать цвет"},border:{main:"Граница",right:"Стиль границы"},mergeCell:{main:"Объединить ячейки",right:"Выбрать тип объединения"},horizontalAlignMode:{main:"Горизонтальное выравнивание",right:"Выравнивание"},verticalAlignMode:{main:"Вертикальное выравнивание",right:"Выравнивание"},textWrapMode:{main:"Перенос текста",right:"Режим переноса текста"},textRotateMode:{main:"Поворот текста",right:"Режим поворота текста"},more:"Больше",toggleGridlines:"Переключить сетку"},align:{left:"лево",center:"центр",right:"право",top:"верх",middle:"середина",bottom:"низ"},button:{confirm:"ОК",cancel:"Отмена",close:"Закрыть",update:"Обновить",delete:"Удалить",insert:"Вставить",prevPage:"Предыдущая",nextPage:"Следующая",total:"всего:"},punctuation:{tab:"Табуляция",semicolon:"точка с запятой",comma:"запятая",space:"пробел"},colorPicker:{collapse:"Свернуть",customColor:"ПОЛЬЗ.",change:"Изменить",confirmColor:"ОК",cancelColor:"Отмена"},borderLine:{borderTop:"верхняя граница",borderBottom:"нижняя граница",borderLeft:"левая граница",borderRight:"правая граница",borderNone:"без границы",borderAll:"все границы",borderOutside:"внешняя граница",borderInside:"внутренняя граница",borderHorizontal:"горизонтальная граница",borderVertical:"вертикальная граница",borderColor:"цвет границы",borderSize:"размер границы",borderType:"тип границы"},merge:{all:"Объединить все",vertical:"Вертикальное объединение",horizontal:"Горизонтальное объединение",cancel:"Отменить объединение",overlappingError:"Невозможно объединить перекрывающиеся области",partiallyError:"Невозможно выполнить эту операцию на частично объединенных ячейках",confirm:{title:"Продолжение объединения сохранит только значение в верхней левой ячейке, остальные значения будут удалены. Вы уверены, что хотите продолжить?",cancel:"Отменить объединение",confirm:"Продолжить объединение",waring:"Предупреждение",dismantleMergeCellWaring:"Это приведет к разделению некоторых объединенных ячеек. Продолжить?"}},filter:{confirm:{error:"Произошла ошибка",notAllowedToInsertRange:"Нельзя перемещать ячейки сюда, пока фильтр не будет очищен"}},textWrap:{overflow:"Переполнение",wrap:"Перенос",clip:"Обрезать"},textRotate:{none:"Нет",angleUp:"Повернуть вверх",angleDown:"Повернуть вниз",vertical:"Вертикально",rotationUp:"Поворот вверх",rotationDown:"Поворот вниз"},sheetConfig:{delete:"Удалить",copy:"Копировать",rename:"Переименовать",changeColor:"Изменить цвет",hide:"Скрыть",unhide:"Показать",moveLeft:"Переместить влево",moveRight:"Переместить вправо",resetColor:"Сбросить цвет",cancelText:"Отмена",chooseText:"Подтвердить цвет",tipNameRepeat:"Имя вкладки не может повторяться! Пожалуйста, исправьте",noMoreSheet:"В книге должен содержаться хотя бы один видимый лист. Чтобы удалить выбранный лист, вставьте новый лист или покажите скрытый лист.",confirmDelete:"Вы уверены, что хотите удалить",redoDelete:"Можно отменить с помощью Ctrl+Z",noHide:"Нельзя скрыть, оставьте хотя бы одну вкладку листа",chartEditNoOpt:"Эта операция недоступна в режиме редактирования диаграммы!",sheetNameErrorTitle:"Произошла ошибка",sheetNameSpecCharError:"Имя не может превышать 31 символов, начало и конец имени не могут быть ' и имя не может содержать: [ ] : \\ ? * /",sheetNameCannotIsEmptyError:"Имя листа не может быть пустым.",sheetNameAlreadyExistsError:"Имя листа уже существует. Пожалуйста, введите другое имя.",deleteSheet:"Удалить лист",deleteSheetContent:"Подтвердите удаление этого листа. После удаления его нельзя будет восстановить. Вы уверены, что хотите удалить его?",addProtectSheet:"Защитить лист",removeProtectSheet:"Снять защиту листа",changeSheetPermission:"Изменить разрешения листа",viewAllProtectArea:"Просмотреть все защищенные области"},rightClick:{copy:"Копировать",cut:"Вырезать",paste:"Вставить",pasteSpecial:"Специальная вставка",pasteValue:"Вставить значение",pasteFormat:"Вставить формат",pasteColWidth:"Вставить ширину столбца",pasteBesidesBorder:"Вставить кроме стилей границы",insert:"Вставить",insertRow:"Вставить строку",insertRowsAfter:"Вставить",insertRowsAbove:"Вставить",insertRowBefore:"Вставить строку выше",insertRowsAfterSuffix:"строк после",insertRowsAboveSuffix:"строк выше",insertColumn:"Вставить столбец",insertColumnBefore:"Вставить столбец слева",insertColsLeft:"Вставить",insertColsRight:"Вставить",insertColsLeftSuffix:"столбцов слева",insertColsRightSuffix:"столбцов справа",delete:"Удалить",deleteCell:"Удалить ячейку",insertCell:"Вставить ячейку",deleteSelected:"Удалить выбранное",hide:"Скрыть",hideSelected:"Скрыть выбранное",showHide:"Показать скрытые",toTopAdd:"Добавить сверху",toBottomAdd:"Добавить снизу",toLeftAdd:"Добавить слева",toRightAdd:"Добавить справа",deleteSelectedRow:"Удалить выбранную строку",deleteSelectedColumn:"Удалить выбранный столбец",hideSelectedRow:"Скрыть выбранную строку",showHideRow:"Показать скрытую строку",rowHeight:"Высота строки",hideSelectedColumn:"Скрыть выбранный столбец",showHideColumn:"Показать скрытый столбец",columnWidth:"Ширина столбца",moveLeft:"Переместить влево",moveUp:"Переместить вверх",moveRight:"Переместить вправо",moveDown:"Переместить вниз",add:"Добавить",row:"Строка",column:"Столбец",confirm:"Подтвердить",clearSelection:"Очистить",clearContent:"Очистить содержимое",clearFormat:"Очистить формат",clearAll:"Очистить все",root:"Корень",log:"Логарифм",delete0:"Удалить значения 0 с обоих концов",removeDuplicate:"Удалить дубликаты значений",byRow:"По строке",byCol:"По столбцу",generateNewMatrix:"Создать новую матрицу",fitContent:"Подогнать под данные",freeze:"Закрепить",freezeCol:"Закрепить до этого столбца",freezeRow:"Закрепить до этой строки",cancelFreeze:"Отменить закрепление",deleteAllRowsAlert:"Нельзя удалить все строки на листе",deleteAllColumnsAlert:"Нельзя удалить все столбцы на листе",hideAllRowsAlert:"Нельзя скрыть все строки на листе",hideAllColumnsAlert:"Нельзя скрыть все столбцы на листе",protectRange:"Защитить диапазон",editProtectRange:"Редактировать защищенный диапазон",removeProtectRange:"Удалить защиту диапазона",turnOnProtectRange:"Включить защиту диапазона",viewAllProtectArea:"Просмотреть все защищенные области"},info:{tooltip:"Подсказка",error:"Ошибка",notChangeMerge:"Вы не можете частично изменить объединенные ячейки",detailUpdate:"Новый открытый",detailSave:"Восстановлено из локального кэша",row:"",column:"",loading:"Загрузка...",copy:"Копировать",return:"Выход",rename:"Переименовать",tips:"Переименовать",noName:"Электронная таблица без названия",wait:"ожидание обновления",add:"Добавить",addLast:"больше строк внизу",backTop:"Вернуться наверх",pageInfo:"Всего ${total}, ${totalPage} страниц, текущая ${currentPage}",nextPage:"Следующая",tipInputNumber:"Пожалуйста, введите число",tipInputNumberLimit:"Диапазон увеличения ограничен от 1 до 100",tipRowHeightLimit:"Высота строки должна быть в пределах от 0 до 545",tipColumnWidthLimit:"Ширина столбца должна быть в пределах от 0 до 2038",pageInfoFull:"Всего ${total}, ${totalPage} страниц, все данные отображены",problem:"Произошла проблема",forceStringInfo:"Число хранится как текст"},clipboard:{paste:{exceedMaxCells:"Количество вставляемых ячеек превышает максимальное количество ячеек",overlappingMergedCells:"Область вставки перекрывается с объединенными ячейками"},shortCutNotify:{title:"Используйте сочетания клавиш для вставки.",useShortCutInstead:"Обнаружено содержимое Excel. Используйте сочетание клавиш для вставки."}},statusbar:{sum:"Сумма",average:"Среднее",min:"Минимум",max:"Максимум",count:"Числовое количество",countA:"Количество",clickToCopy:"Нажмите, чтобы скопировать",copied:"Скопировано"},autoFill:{copy:"Копировать ячейку",series:"Заполнить серию",formatOnly:"Только формат",noFormat:"Без формата"},rangeSelector:{placeholder:"Выберите диапазон или введите значение",tooltip:"Выберите диапазон"},shortcut:{sheet:{"zoom-in":"Увеличить","zoom-out":"Уменьшить","reset-zoom":"Сбросить масштаб","select-below-cell":"Выбрать ячейку ниже","select-up-cell":"Выбрать ячейку выше","select-left-cell":"Выбрать ячейку слева","select-right-cell":"Выбрать ячейку справа","select-next-cell":"Выбрать следующую ячейку","select-previous-cell":"Выбрать предыдущую ячейку","select-up-value-cell":"Выбрать ячейку выше со значением","select-below-value-cell":"Выбрать ячейку ниже со значением","select-left-value-cell":"Выбрать ячейку слева со значением","select-right-value-cell":"Выбрать ячейку справа со значением","expand-selection-down":"Расширить выделение вниз","expand-selection-up":"Расширить выделение вверх","expand-selection-left":"Расширить выделение влево","expand-selection-right":"Расширить выделение вправо","expand-selection-to-left-gap":"Расширить выделение до левого пробела","expand-selection-to-below-gap":"Расширить выделение до нижнего пробела","expand-selection-to-right-gap":"Расширить выделение до правого пробела","expand-selection-to-up-gap":"Расширить выделение до верхнего пробела","select-all":"Выбрать все","toggle-editing":"Переключить редактирование","delete-and-start-editing":"Очистить и начать редактирование","abort-editing":"Прервать редактирование","break-line":"Разрыв строки","set-bold":"Переключить жирный","set-italic":"Переключить курсив","set-underline":"Переключить подчеркивание","set-strike-through":"Переключить зачеркивание","start-editing":"Начать редактирование"}},"sheet-view":"Просмотр листа","sheet-edit":"Редактирование листа",definedName:{managerTitle:"Управление именами",managerDescription:"Создайте определенное имя, выбрав ячейки или формулы и введя желаемое имя в текстовое поле.",addButton:"Добавить определенное имя",featureTitle:"Определенные имена",ratioRange:"Диапазон",ratioFormula:"Формула",confirm:"Подтвердить",cancel:"Отмена",scopeWorkbook:"Книга",inputNamePlaceholder:"Введите имя (без пробелов)",inputCommentPlaceholder:"Введите комментарий",inputRangePlaceholder:"Введите диапазон (без пробелов)",inputFormulaPlaceholder:"Введите формулу (без пробелов)",nameEmpty:"Имя не может быть пустым",nameDuplicate:"Имя уже существует",formulaOrRefStringEmpty:"Формула или строка ссылки не может быть пустой",formulaOrRefStringInvalid:"Неверная формула или строка ссылки",defaultName:"ОпределенноеИмя",updateButton:"Обновить",deleteButton:"Удалить",deleteConfirmText:"Вы уверены, что хотите удалить это определенное имя?",nameConflict:"Имя конфликтует с именем функции",nameInvalid:"Имя недействительно",nameSheetConflict:"Имя конфликтует с именем листа"},uploadLoading:{loading:"Загрузка...",error:"Ошибка"},permission:{toolbarMenu:"Защита",panel:{title:"Защита строк и столбцов",name:"Имя",protectedRange:"Защищенный диапазон",permissionDirection:"Описание разрешения",permissionDirectionPlaceholder:"Введите описание разрешения",editPermission:"Редактировать разрешения",onlyICanEdit:"Только я могу редактировать",designedUserCanEdit:"Назначенные пользователи могут редактировать",viewPermission:"Просмотр разрешений",othersCanView:"Другие могут просматривать",noOneElseCanView:"Никто другой не может просматривать",designedPerson:"Назначенные лица",addPerson:"Добавить человека",canEdit:"Может редактировать",canView:"Может просматривать",delete:"Удалить",currentSheet:"Текущий лист",allSheet:"Все листы",edit:"Редактировать",Print:"Печать",Comment:"Комментировать",Copy:"Копировать",SetCellStyle:"Установить стиль ячейки",SetCellValue:"Установить значение ячейки",SetHyperLink:"Установить гиперссылку",Sort:"Сортировать",Filter:"Фильтровать",PivotTable:"Сводная таблица",FloatImage:"Плавающее изображение",RowHeightColWidth:"Высота строки и ширина столбца",RowHeightColWidthReadonly:"Только для чтения высота строки и ширина столбца",FilterReadonly:"Только для чтения фильтр",nameError:"Имя не может быть пустым",created:"Создано",iCanEdit:"Я могу редактировать",iCanNotEdit:"Я не могу редактировать",iCanView:"Я могу просматривать",iCanNotView:"Я не могу просматривать",emptyRangeError:"Диапазон не может быть пустым",rangeOverlapError:"Диапазон не может пересекаться",rangeOverlapOverPermissionError:"Диапазон не может пересекаться с диапазоном, имеющим те же разрешения",InsertHyperlink:"Вставить гиперссылку",SetRowStyle:"Установить стиль строки",SetColumnStyle:"Установить стиль столбца",InsertColumn:"Вставить столбец",InsertRow:"Вставить строку",DeleteRow:"Удалить строку",DeleteColumn:"Удалить столбец",EditExtraObject:"Редактировать дополнительный объект"},dialog:{allowUserToEdit:"Разрешить пользователю редактировать",allowedPermissionType:"Допустимые типы разрешений",setCellValue:"Установить значение ячейки",setCellStyle:"Установить стиль ячейки",copy:"Копировать",alert:"Предупреждение",search:"Поиск",alertContent:"Этот диапазон защищен и в настоящее время недоступен для редактирования. Если вам нужно редактировать, пожалуйста, свяжитесь с создателем.",userEmpty:"нет назначенных лиц, поделитесь ссылкой, чтобы пригласить конкретных людей.",listEmpty:"Вы не установили ни одного защищенного диапазона или листа.",commonErr:"Диапазон защищен, и у вас нет разрешения на выполнение этой операции. Для редактирования свяжитесь с создателем.",editErr:"Диапазон защищен, и у вас нет разрешения на редактирование. Для редактирования свяжитесь с создателем.",pasteErr:"Диапазон защищен, и у вас нет разрешения на вставку. Для вставки свяжитесь с создателем.",setStyleErr:"Диапазон защищен, и у вас нет разрешения на установку стилей. Для установки стилей свяжитесь с создателем.",copyErr:"Диапазон защищен, и у вас нет разрешения на копирование. Для копирования свяжитесь с создателем.",workbookCopyErr:"Лист защищен, и у вас нет разрешения на копирование. Для копирования свяжитесь с создателем.",setRowColStyleErr:"Диапазон защищен, и у вас нет разрешения на установку стилей строк и столбцов. Для установки стилей строк и столбцов свяжитесь с создателем.",moveRowColErr:"Диапазон защищен, и у вас нет разрешения на перемещение строк и столбцов. Для перемещения строк и столбцов свяжитесь с создателем.",moveRangeErr:"Диапазон защищен, и у вас нет разрешения на перемещение выделения. Для перемещения выделения свяжитесь с создателем.",autoFillErr:"Диапазон защищен, и у вас нет разрешения на автозаполнение. Для использования автозаполнения свяжитесь с создателем.",filterErr:"Диапазон защищен, и у вас нет разрешения на фильтрацию. Для фильтрации свяжитесь с создателем.",operatorSheetErr:"Лист защищен, и у вас нет разрешения на операции с листом. Для операций с листом свяжитесь с создателем.",insertOrDeleteMoveRangeErr:"Вставленный или удаленный диапазон пересекается с защищенным диапазоном, и эта операция в настоящее время не поддерживается.",printErr:"Лист защищен, и у вас нет разрешения на печать. Для печати свяжитесь с создателем.",formulaErr:"Диапазон или ссылочный диапазон защищен, и у вас нет разрешения на редактирование. Для редактирования свяжитесь с создателем.",hyperLinkErr:"Диапазон защищен, и у вас нет разрешения на установку гиперссылок. Для установки гиперссылок свяжитесь с создателем."},button:{confirm:"Подтвердить",cancel:"Отменить",addNewPermission:"Добавить новое разрешение"}}}}); + + +// @univerjs/sheets-formula/locale/ru-RU +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaRuRU=n())})(this,function(){"use strict";return{formula:{progress:{analyzing:"Анализ",calculating:"Вычисление","array-analysis":"Анализ массива","array-calculation":"Вычисление массива",done:"Готово"}}}}); + + +// @univerjs/sheets-formula-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaUiRuRU=t())})(this,function(){"use strict";return{formula:{insert:{tooltip:"Функции",sum:"СУММ",average:"СРЗНАЧ",count:"СЧЁТ",max:"МАКС",min:"МИН",more:"Другие функции..."},functionList:{...{ACCRINT:{description:"Returns the accrued interest for a security that pays periodic interest",abstract:"Returns the accrued interest for a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},firstInterest:{name:"first_interest",detail:"The security's first interest date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."},calcMethod:{name:"calc_method",detail:"Is a logical value: interest accrues from the issue date = TRUE or ignored; interest accrues from the last coupon payment date = FALSE."}}},ACCRINTM:{description:"Returns the accrued interest for a security that pays interest at maturity",abstract:"Returns the accrued interest for a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"issue",detail:"The security's issue date."},settlement:{name:"settlement",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's annual coupon rate."},par:{name:"par",detail:"The security's par value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},AMORDEGRC:{description:"Returns the depreciation for each accounting period by using a depreciation coefficient",abstract:"Returns the depreciation for each accounting period by using a depreciation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"Returns the depreciation for each accounting period",abstract:"Returns the depreciation for each accounting period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"cost",detail:"The cost of the asset."},datePurchased:{name:"date_purchased",detail:"The date of the purchase of the asset."},firstPeriod:{name:"first_period",detail:"The date of the end of the first period."},salvage:{name:"salvage",detail:"The salvage value at the end of the life of the asset."},period:{name:"period",detail:"The period."},rate:{name:"rate",detail:"The rate of depreciation."},basis:{name:"basis",detail:"The year basis to be used."}}},COUPDAYBS:{description:"Returns the number of days from the beginning of the coupon period to the settlement date",abstract:"Returns the number of days from the beginning of the coupon period to the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYS:{description:"Returns the number of days in the coupon period that contains the settlement date",abstract:"Returns the number of days in the coupon period that contains the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPDAYSNC:{description:"Returns the number of days from the settlement date to the next coupon date",abstract:"Returns the number of days from the settlement date to the next coupon date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNCD:{description:"Returns the next coupon date after the settlement date",abstract:"Returns the next coupon date after the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPNUM:{description:"Returns the number of coupons payable between the settlement date and maturity date",abstract:"Returns the number of coupons payable between the settlement date and maturity date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},COUPPCD:{description:"Returns the previous coupon date before the settlement date",abstract:"Returns the previous coupon date before the settlement date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},CUMIPMT:{description:"Returns the cumulative interest paid between two periods",abstract:"Returns the cumulative interest paid between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},CUMPRINC:{description:"Returns the cumulative principal paid on a loan between two periods",abstract:"Returns the cumulative principal paid on a loan between two periods",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d"}],functionParameter:{rate:{name:"rate",detail:"The interest rate."},nper:{name:"nper",detail:"The total number of payment periods."},pv:{name:"pv",detail:"The present value."},startPeriod:{name:"start_period",detail:"The first period in the calculation. Payment periods are numbered beginning with 1."},endPeriod:{name:"end_period",detail:"The last period in the calculation."},type:{name:"type",detail:"The timing of the payment."}}},DB:{description:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",abstract:"Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},month:{name:"month",detail:"The number of months in the first year. If month is omitted, it is assumed to be 12."}}},DDB:{description:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",abstract:"Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},period:{name:"period",detail:"The period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."}}},DISC:{description:"Returns the discount rate for a security",abstract:"Returns the discount rate for a security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},DOLLARDE:{description:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",abstract:"Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427"}],functionParameter:{fractionalDollar:{name:"fractional_dollar",detail:"A number expressed as an integer part and a fraction part, separated by a decimal symbol."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DOLLARFR:{description:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",abstract:"Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495"}],functionParameter:{decimalDollar:{name:"decimal_dollar",detail:"A decimal number."},fraction:{name:"fraction",detail:"The integer to use in the denominator of the fraction."}}},DURATION:{description:"Returns the annual duration of a security with periodic interest payments",abstract:"Returns the annual duration of a security with periodic interest payments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},EFFECT:{description:"Returns the effective annual interest rate",abstract:"Returns the effective annual interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4"}],functionParameter:{nominalRate:{name:"nominal_rate",detail:"The nominal interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},FV:{description:"Returns the future value of an investment",abstract:"Returns the future value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},FVSCHEDULE:{description:"Returns the future value of an initial principal after applying a series of compound interest rates",abstract:"Returns the future value of an initial principal after applying a series of compound interest rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d"}],functionParameter:{principal:{name:"principal",detail:"The present value."},schedule:{name:"schedule",detail:"An array of interest rates to apply."}}},INTRATE:{description:"Returns the interest rate for a fully invested security",abstract:"Returns the interest rate for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},redemption:{name:"redemption",detail:"The amount to be received at maturity."},basis:{name:"basis",detail:"The type of day count basis to use."}}},IPMT:{description:"Returns the interest payment for an investment for a given period",abstract:"Returns the interest payment for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},IRR:{description:"Returns the internal rate of return for a series of cash flows",abstract:"Returns the internal rate of return for a series of cash flows",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers for which you want to calculate the internal rate of return. +1.Values must contain at least one positive value and one negative value to calculate the internal rate of return. +2.IRR uses the order of values to interpret the order of cash flows. Be sure to enter your payment and income values in the sequence you want. +3.If an array or reference argument contains text, logical values, or empty cells, those values are ignored.`},guess:{name:"guess",detail:"A number that you guess is close to the result of IRR."}}},ISPMT:{description:"Calculates the interest paid during a specific period of an investment",abstract:"Calculates the interest paid during a specific period of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc"}],functionParameter:{rate:{name:"rate",detail:"The interest rate for the investment."},per:{name:"per",detail:"The period for which you want to find the interest, and must be between 1 and Nper."},nper:{name:"nper",detail:"The total number of payment periods for the investment."},pv:{name:"pv",detail:"The present value of the investment. For a loan, Pv is the loan amount."}}},MDURATION:{description:"Returns the Macauley modified duration for a security with an assumed par value of $100",abstract:"Returns the Macauley modified duration for a security with an assumed par value of $100",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},coupon:{name:"coupon",detail:"The security's annual coupon rate."},yld:{name:"yld",detail:"The security's annual yield."},frequency:{name:"frequency",detail:"The number of coupon payments per year."},basis:{name:"basis",detail:"The type of day count basis to use."}}},MIRR:{description:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",abstract:"Returns the internal rate of return where positive and negative cash flows are financed at different rates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524"}],functionParameter:{values:{name:"values",detail:`An array or a reference to cells that contain numbers. These numbers represent a series of payments (negative values) and income (positive values) occurring at regular periods. +1.Values must contain at least one positive value and one negative value to calculate the modified internal rate of return. Otherwise, MIRR returns the #DIV/0! error value. +2.If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.`},financeRate:{name:"finance_rate",detail:"The interest rate you pay on the money used in the cash flows."},reinvestRate:{name:"reinvest_rate",detail:"The interest rate you receive on the cash flows as you reinvest them."}}},NOMINAL:{description:"Returns the annual nominal interest rate",abstract:"Returns the annual nominal interest rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b"}],functionParameter:{effectRate:{name:"effect_rate",detail:"The effective interest rate."},npery:{name:"npery",detail:"The number of compounding periods per year."}}},NPER:{description:"Returns the number of periods for an investment",abstract:"Returns the number of periods for an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},NPV:{description:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",abstract:"Returns the net present value of an investment based on a series of periodic cash flows and a discount rate",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568"}],functionParameter:{rate:{name:"rate",detail:"The rate of discount over the length of one period."},value1:{name:"value1",detail:"1 to 254 arguments representing the payments and income."},value2:{name:"value2",detail:"1 to 254 arguments representing the payments and income."}}},ODDFPRICE:{description:"Returns the price per $100 face value of a security with an odd first period",abstract:"Returns the price per $100 face value of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDFYIELD:{description:"Returns the yield of a security with an odd first period",abstract:"Returns the yield of a security with an odd first period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},firstCoupon:{name:"first_coupon",detail:"The security's first coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLPRICE:{description:"Returns the price per $100 face value of a security with an odd last period",abstract:"Returns the price per $100 face value of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},ODDLYIELD:{description:"Returns the yield of a security with an odd last period",abstract:"Returns the yield of a security with an odd last period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},lastInterest:{name:"last_interest",detail:"The security's last coupon date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PDURATION:{description:"Returns the number of periods required by an investment to reach a specified value",abstract:"Returns the number of periods required by an investment to reach a specified value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"rate",detail:"Rate is the interest rate per period."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the desired future value of the investment."}}},PMT:{description:"Returns the periodic payment for an annuity",abstract:"Returns the periodic payment for an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PPMT:{description:"Returns the payment on the principal for an investment for a given period",abstract:"Returns the payment on the principal for an investment for a given period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},per:{name:"per",detail:"The period for which you want to find the interest and must be in the range 1 to nper."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},PRICE:{description:"Returns the price per $100 face value of a security that pays periodic interest",abstract:"Returns the price per $100 face value of a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEDISC:{description:"Returns the price per $100 face value of a discounted security",abstract:"Returns the price per $100 face value of a discounted security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},discount:{name:"discount",detail:"The security's discount rate."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PRICEMAT:{description:"Returns the price per $100 face value of a security that pays interest at maturity",abstract:"Returns the price per $100 face value of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},yld:{name:"yld",detail:"The security's annual yield."},basis:{name:"basis",detail:"The type of day count basis to use."}}},PV:{description:"Returns the present value of an investment",abstract:"Returns the present value of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd"}],functionParameter:{rate:{name:"rate",detail:"The interest rate per period."},nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."}}},RATE:{description:"Returns the interest rate per period of an annuity",abstract:"Returns the interest rate per period of an annuity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce"}],functionParameter:{nper:{name:"nper",detail:"The total number of payment periods in an annuity."},pmt:{name:"pmt",detail:"The payment made each period; it cannot change over the life of the annuity."},pv:{name:"pv",detail:"The present value, or the lump-sum amount that a series of future payments is worth right now."},fv:{name:"fv",detail:"The future value, or a cash balance you want to attain after the last payment is made."},type:{name:"type",detail:"The number 0 or 1 and indicates when payments are due."},guess:{name:"guess",detail:"Your guess for what the rate will be."}}},RECEIVED:{description:"Returns the amount received at maturity for a fully invested security",abstract:"Returns the amount received at maturity for a fully invested security",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},investment:{name:"investment",detail:"The amount invested in the security."},discount:{name:"discount",detail:"The security's discount rate."},basis:{name:"basis",detail:"The type of day count basis to use."}}},RRI:{description:"Returns an equivalent interest rate for the growth of an investment",abstract:"Returns an equivalent interest rate for the growth of an investment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"nper",detail:"Nper is the number of periods for the investment."},pv:{name:"pv",detail:"Pv is the present value of the investment."},fv:{name:"fv",detail:"Fv is the future value of the investment."}}},SLN:{description:"Returns the straight-line depreciation of an asset for one period",abstract:"Returns the straight-line depreciation of an asset for one period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."}}},SYD:{description:"Returns the sum-of-years' digits depreciation of an asset for a specified period",abstract:"Returns the sum-of-years' digits depreciation of an asset for a specified period",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is depreciated (sometimes called the useful life of the asset)."},per:{name:"per",detail:"The period and must use the same units as life."}}},TBILLEQ:{description:"Returns the bond-equivalent yield for a Treasury bill",abstract:"Returns the bond-equivalent yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLPRICE:{description:"Returns the price per $100 face value for a Treasury bill",abstract:"Returns the price per $100 face value for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},discount:{name:"discount",detail:"The Treasury bill's discount rate."}}},TBILLYIELD:{description:"Returns the yield for a Treasury bill",abstract:"Returns the yield for a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba"}],functionParameter:{settlement:{name:"settlement",detail:"The Treasury bill's settlement date."},maturity:{name:"maturity",detail:"The Treasury bill's maturity date."},pr:{name:"pr",detail:"The Treasury bill's price per $100 face value."}}},VDB:{description:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",abstract:"Returns the depreciation of an asset for a specified or partial period by using a declining balance method",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73"}],functionParameter:{cost:{name:"cost",detail:"The initial cost of the asset."},salvage:{name:"salvage",detail:"The value at the end of the depreciation (sometimes called the salvage value of the asset)."},life:{name:"life",detail:"The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."},startPeriod:{name:"start_period",detail:"The starting period for which you want to calculate the depreciation."},endPeriod:{name:"end_period",detail:"The ending period for which you want to calculate the depreciation."},factor:{name:"factor",detail:"The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."},noSwitch:{name:"no_switch",detail:"A logical value specifying whether to switch to straight-line depreciation when depreciation is greater than the declining balance calculation."}}},XIRR:{description:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d"}],functionParameter:{values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."},guess:{name:"guess",detail:"A number that you guess is close to the result of XIRR."}}},XNPV:{description:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",abstract:"Returns the net present value for a schedule of cash flows that is not necessarily periodic",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7"}],functionParameter:{rate:{name:"rate",detail:"The discount rate to apply to the cash flows."},values:{name:"values",detail:"A series of cash flows that corresponds to a schedule of payments in dates. The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. The series of values must contain at least one positive and one negative value."},dates:{name:"dates",detail:"A schedule of payment dates that corresponds to the cash flow payments. Dates may occur in any order."}}},YIELD:{description:"Returns the yield on a security that pays periodic interest",abstract:"Returns the yield on a security that pays periodic interest",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},frequency:{name:"frequency",detail:"The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDDISC:{description:"Returns the annual yield for a discounted security; for example, a Treasury bill",abstract:"Returns the annual yield for a discounted security; for example, a Treasury bill",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},pr:{name:"pr",detail:"The security's price per $100 face value."},redemption:{name:"redemption",detail:"The security's redemption value per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}},YIELDMAT:{description:"Returns the annual yield of a security that pays interest at maturity",abstract:"Returns the annual yield of a security that pays interest at maturity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f"}],functionParameter:{settlement:{name:"settlement",detail:"The security's settlement date."},maturity:{name:"maturity",detail:"The security's maturity date."},issue:{name:"issue",detail:"The security's issue date."},rate:{name:"rate",detail:"The security's interest rate."},pr:{name:"pr",detail:"The security's price per $100 face value."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{DATE:{description:"Returns the serial number of a particular date",abstract:"Returns the serial number of a particular date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"year",detail:"The value of the year argument can include one to four digits. Excel interprets the year argument according to the date system your computer is using. By default, Univer uses the 1900 date system, which means the first date is January 1, 1900."},month:{name:"month",detail:"A positive or negative integer representing the month of the year from 1 to 12 (January to December)."},day:{name:"day",detail:"A positive or negative integer representing the day of the month from 1 to 31."}}},DATEDIF:{description:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",abstract:"Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the first, or starting date of a given period."},endDate:{name:"end_date",detail:"A date that represents the last, or ending, date of the period."},method:{name:"method",detail:"The type of information that you want returned."}}},DATEVALUE:{description:"Converts a date in the form of text to a serial number.",abstract:"Converts a date in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"date_text",detail:`Text that represents a date in an Excel date format, or a reference to a cell that contains text that represents a date in an Excel date format. For example, "1/30/2008" or "30-Jan-2008" are text strings within quotation marks that represent dates. +Using the default date system in Microsoft Excel for Windows, the date_text argument must represent a date between January 1, 1900 and December 31, 9999. The DATEVALUE function returns the #VALUE! error value if the value of the date_text argument falls outside of this range. +If the year portion of the date_text argument is omitted, the DATEVALUE function uses the current year from your computer's built-in clock. Time information in the date_text argument is ignored.`}}},DAY:{description:"Returns the day of a date, represented by a serial number. The day is given as an integer ranging from 1 to 31.",abstract:"Converts a serial number to a day of the month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},DAYS:{description:"Returns the number of days between two dates",abstract:"Returns the number of days between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."}}},DAYS360:{description:"Calculates the number of days between two dates based on a 360-day year",abstract:"Calculates the number of days between two dates based on a 360-day year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"start_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},endDate:{name:"end_date",detail:"Start_date and End_date are the two dates between which you want to know the number of days."},method:{name:"method",detail:"A logical value that specifies whether to use the U.S. or European method in the calculation."}}},EDATE:{description:"Returns the serial number that represents the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue.",abstract:"Returns the serial number of the date that is the indicated number of months before or after the start date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."},months:{name:"months",detail:"The number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date."}}},EOMONTH:{description:"Returns the serial number of the last day of the month before or after a specified number of months",abstract:"Returns the serial number of the last day of the month before or after a specified number of months",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the starting date."},months:{name:"months",detail:"The number of months before or after start_date."}}},EPOCHTODATE:{description:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",abstract:"Converts a Unix epoch timestamp in seconds, milliseconds, or microseconds to a datetime in Universal Time Coordinated (UTC).",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"timestamp",detail:"A Unix epoch timestamp, in seconds, milliseconds, or microseconds."},unit:{name:"unit",detail:`The unit of time in which the timestamp is expressed. 1 by default: +1 indicates the time unit is seconds. +2 indicates the time unit is milliseconds. +3 indicates the time unit is microseconds.`}}},HOUR:{description:"Converts a serial number to an hour",abstract:"Converts a serial number to an hour",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},ISOWEEKNUM:{description:"Returns the number of the ISO week number of the year for a given date",abstract:"Returns the number of the ISO week number of the year for a given date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"date",detail:"Date is the date-time code used by Excel for date and time calculation."}}},MINUTE:{description:"Converts a serial number to a minute",abstract:"Converts a serial number to a minute",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},MONTH:{description:"Returns the month of a date represented by a serial number. The month is given as an integer, ranging from 1 (January) to 12 (December).",abstract:"Converts a serial number to a month",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8"}],functionParameter:{serialNumber:{name:"serial_number",detail:"Required. The date of the month you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},NETWORKDAYS:{description:"Returns the number of whole workdays between two dates",abstract:"Returns the number of whole workdays between two dates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NETWORKDAYS_INTL:{description:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",abstract:"Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},NOW:{description:"Returns the serial number of the current date and time.",abstract:"Returns the serial number of the current date and time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46"}],functionParameter:{}},SECOND:{description:"Converts a serial number to a second",abstract:"Converts a serial number to a second",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the day you are trying to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008."}}},TIME:{description:"Returns the serial number of a particular time.",abstract:"Returns the serial number of a particular time",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457"}],functionParameter:{hour:{name:"hour",detail:"A number from 0 (zero) to 32767 representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, TIME(27,0,0) = TIME(3,0,0) = .125 or 3:00 AM."},minute:{name:"minute",detail:"A number from 0 to 32767 representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM."},second:{name:"second",detail:"A number from 0 to 32767 representing the second. Any value greater than 59 will be converted to hours, minutes, and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 or 12:33:20 AM."}}},TIMEVALUE:{description:"Converts a time in the form of text to a serial number.",abstract:"Converts a time in the form of text to a serial number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645"}],functionParameter:{timeText:{name:"time_text",detail:'A text string that represents a time in any one of the Microsoft Excel time formats; for example, "6:45 PM" and "18:45" text strings within quotation marks that represent time.'}}},TO_DATE:{description:"Converts a provided number to a date.",abstract:"Converts a provided number to a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The argument or reference to a cell to be converted to a date."}}},TODAY:{description:"Returns the serial number of today's date",abstract:"Returns the serial number of today's date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9"}],functionParameter:{}},WEEKDAY:{description:"Converts a serial number to a day of the week",abstract:"Converts a serial number to a day of the week",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A sequential number that represents the date of the day you are trying to find."},returnType:{name:"return_type",detail:"A number that determines the type of return value."}}},WEEKNUM:{description:"Converts a serial number to a number representing where the week falls numerically with a year",abstract:"Converts a serial number to a number representing where the week falls numerically with a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340"}],functionParameter:{serialNumber:{name:"serial_number",detail:"A date within the week."},returnType:{name:"return_type",detail:"A number that determines on which day the week begins. The default is 1."}}},WORKDAY:{description:"Returns the serial number of the date before or after a specified number of workdays",abstract:"Returns the serial number of the date before or after a specified number of workdays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},WORKDAY_INTL:{description:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",abstract:"Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},days:{name:"days",detail:"The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date."},weekend:{name:"weekend",detail:"is a weekend number or string that specifies when weekends occur."},holidays:{name:"holidays",detail:"An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. "}}},YEAR:{description:"Returns the year corresponding to a date. The year is returned as an integer in the range 1900-9999.",abstract:"Converts a serial number to a year",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9"}],functionParameter:{serialNumber:{name:"serial_number",detail:"The date of the year you want to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text."}}},YEARFRAC:{description:"Returns the year fraction representing the number of whole days between start_date and end_date",abstract:"Returns the year fraction representing the number of whole days between start_date and end_date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8"}],functionParameter:{startDate:{name:"start_date",detail:"A date that represents the start date."},endDate:{name:"end_date",detail:"A date that represents the end date."},basis:{name:"basis",detail:"The type of day count basis to use."}}}},...{ABS:{description:"Returns the absolute value of a number. The absolute value of a number is the number without its sign.",abstract:"Returns the absolute value of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"number",detail:"The real number of which you want the absolute value."}}},ACOS:{description:"Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is number. The returned angle is given in radians in the range 0 (zero) to pi.",abstract:"Returns the arccosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"number",detail:"The cosine of the angle you want and must be from -1 to 1."}}},ACOSH:{description:"Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is number, so ACOSH(COSH(number)) equals number.",abstract:"Returns the inverse hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"number",detail:"Any real number equal to or greater than 1."}}},ACOT:{description:"Returns the principal value of the arccotangent, or inverse cotangent, of a number.",abstract:"Returns the arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"number",detail:"Number is the cotangent of the angle you want. This must be a real number."}}},ACOTH:{description:"Returns the hyperbolic arccotangent of a number",abstract:"Returns the hyperbolic arccotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"number",detail:"The absolute value of Number must be greater than 1."}}},AGGREGATE:{description:"Returns an aggregate in a list or database",abstract:"Returns an aggregate in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ARABIC:{description:"Converts a Roman number to Arabic, as a number",abstract:"Converts a Roman number to Arabic, as a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"text",detail:'A string enclosed in quotation marks, an empty string (""), or a reference to a cell containing text.'}}},ASIN:{description:"Returns the arcsine of a number.",abstract:"Returns the arcsine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"number",detail:"The sine of the angle you want and must be from -1 to 1."}}},ASINH:{description:"Returns the inverse hyperbolic sine of a number.",abstract:"Returns the inverse hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},ATAN:{description:"Returns the arctangent of a number.",abstract:"Returns the arctangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"number",detail:"The tangent of the angle you want."}}},ATAN2:{description:"Returns the arctangent from x- and y-coordinates.",abstract:"Returns the arctangent from x- and y-coordinates",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"x_num",detail:"The x-coordinate of the point."},yNum:{name:"y_num",detail:"The y-coordinate of the point."}}},ATANH:{description:"Returns the inverse hyperbolic tangent of a number.",abstract:"Returns the inverse hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"number",detail:"Any real number between 1 and -1."}}},BASE:{description:"Converts a number into a text representation with the given radix (base)",abstract:"Converts a number into a text representation with the given radix (base)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"number",detail:"The number that you want to convert. Must be an integer greater than or equal to 0 and less than 2^53."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."},minLength:{name:"min_length",detail:"The minimum length of the returned string. Must be an integer greater than or equal to 0."}}},CEILING:{description:"Rounds a number to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},CEILING_MATH:{description:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number up, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},CEILING_PRECISE:{description:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",abstract:"Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},COMBIN:{description:"Returns the number of combinations for a given number of objects",abstract:"Returns the number of combinations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COMBINA:{description:"Returns the number of combinations with repetitions for a given number of items",abstract:"Returns the number of combinations with repetitions for a given number of items",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each combination."}}},COS:{description:"Returns the cosine of a number.",abstract:"Returns the cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosine."}}},COSH:{description:"Returns the hyperbolic cosine of a number",abstract:"Returns the hyperbolic cosine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cosine."}}},COT:{description:"Returns the cotangent of an angle",abstract:"Returns the cotangent of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cotangent."}}},COTH:{description:"Returns the hyperbolic cotangent of a number",abstract:"Returns the hyperbolic cotangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"number",detail:"Any real number for which you want to find the hyperbolic cotangent."}}},CSC:{description:"Returns the cosecant of an angle",abstract:"Returns the cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the cosecant."}}},CSCH:{description:"Returns the hyperbolic cosecant of an angle",abstract:"Returns the hyperbolic cosecant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the hyperbolic cosecant."}}},DECIMAL:{description:"Converts a text representation of a number in a given base into a decimal number",abstract:"Converts a text representation of a number in a given base into a decimal number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"text",detail:"The string length of Text must be less than or equal to 255 characters."},radix:{name:"radix",detail:"The base radix that you want to convert the number into. Must be an integer greater than or equal to 2 and less than or equal to 36."}}},DEGREES:{description:"Converts radians to degrees",abstract:"Converts radians to degrees",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"angle",detail:"The angle in radians that you want to convert."}}},EVEN:{description:"Rounds a number up to the nearest even integer",abstract:"Rounds a number up to the nearest even integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},EXP:{description:"Returns e raised to the power of a given number",abstract:"Returns e raised to the power of a given number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"number",detail:"The exponent applied to the base e."}}},FACT:{description:"Returns the factorial of a number",abstract:"Returns the factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the factorial. If number is not an integer, it is truncated."}}},FACTDOUBLE:{description:"Returns the double factorial of a number",abstract:"Returns the double factorial of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"number",detail:"The nonnegative number for which you want the double factorial. If number is not an integer, it is truncated."}}},FLOOR:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},FLOOR_MATH:{description:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",abstract:"Rounds a number down, to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."},mode:{name:"mode",detail:"For negative numbers, controls whether Number is rounded toward or away from zero."}}},FLOOR_PRECISE:{description:"Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",abstract:"Rounds a number down to the nearest integer or to the nearest multiple of significance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"number",detail:"The value you want to round."},significance:{name:"significance",detail:"The multiple to which you want to round."}}},GCD:{description:"Returns the greatest common divisor",abstract:"Returns the greatest common divisor",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the greatest common divisor, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose greatest common divisor is to be found. Up to 255 numbers can be specified in this way."}}},INT:{description:"Rounds a number down to the nearest integer",abstract:"Rounds a number down to the nearest integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"number",detail:"The real number you want to round down to an integer."}}},ISO_CEILING:{description:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",abstract:"Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LCM:{description:"Returns the least common multiple",abstract:"Returns the least common multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"number1",detail:"To find the first number of the least common multiple, you can also use a single array or a reference to an array instead of the comma-separated parameters."},number2:{name:"number2",detail:"The second number whose least common multiple is to be found. Up to 255 numbers can be specified in this way."}}},LET:{description:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",abstract:"Assigns names to calculation results to allow storing intermediate calculations, values, or defining names inside a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LN:{description:"Returns the natural logarithm of a number",abstract:"Returns the natural logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the natural logarithm."}}},LOG:{description:"Returns the logarithm of a number to a specified base",abstract:"Returns the logarithm of a number to a specified base",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the logarithm."},base:{name:"base",detail:"The base of the logarithm. If base is omitted, it is assumed to be 10."}}},LOG10:{description:"Returns the base-10 logarithm of a number",abstract:"Returns the base-10 logarithm of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"number",detail:"The positive real number for which you want the base-10 logarithm."}}},MDETERM:{description:"Returns the matrix determinant of an array",abstract:"Returns the matrix determinant of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MINVERSE:{description:"Returns the matrix inverse of an array",abstract:"Returns the matrix inverse of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"array",detail:"A numeric array with an equal number of rows and columns."}}},MMULT:{description:"Returns the matrix product of two arrays",abstract:"Returns the matrix product of two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"array1",detail:"The arrays you want to multiply."},array2:{name:"array2",detail:"The arrays you want to multiply."}}},MOD:{description:"Returns the remainder after number is divided by divisor. The result has the same sign as divisor.",abstract:"Returns the remainder from division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"number",detail:"The number for which you want to find the remainder."},divisor:{name:"divisor",detail:"The number by which you want to divide number"}}},MROUND:{description:"Returns a number rounded to the desired multiple",abstract:"Returns a number rounded to the desired multiple",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"number",detail:"The value to round."},multiple:{name:"multiple",detail:"The multiple to which you want to round number."}}},MULTINOMIAL:{description:"Returns the multinomial of a set of numbers",abstract:"Returns the multinomial of a set of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"number1",detail:"The first value or range to use in the calculation."},number2:{name:"number2",detail:"Additional values ​​or ranges to use in calculations."}}},MUNIT:{description:"Returns the unit matrix or the specified dimension",abstract:"Returns the unit matrix or the specified dimension",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"dimension",detail:"Dimension is an integer specifying the dimension of the unit matrix that you want to return. It returns an array. The dimension has to be greater than zero."}}},ODD:{description:"Rounds a number up to the nearest odd integer",abstract:"Rounds a number up to the nearest odd integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"number",detail:"The value to round."}}},PI:{description:"Returns the value of pi",abstract:"Returns the value of pi",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"Returns the result of a number raised to a power.",abstract:"Returns the result of a number raised to a power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"number",detail:"The base number. It can be any real number."},power:{name:"power",detail:"The exponent to which the base number is raised."}}},PRODUCT:{description:"Multiplies all the numbers given as arguments and returns the product.",abstract:"Multiplies its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"number1",detail:"The first number or range that you want to multiply."},number2:{name:"number2",detail:"Additional numbers or ranges that you want to multiply, up to a maximum of 255 arguments."}}},QUOTIENT:{description:"Returns the integer portion of a division",abstract:"Returns the integer portion of a division",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"numerator",detail:"The dividend."},denominator:{name:"denominator",detail:"The divisor."}}},RADIANS:{description:"Converts degrees to radians",abstract:"Converts degrees to radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"angle",detail:"An angle in degrees that you want to convert."}}},RAND:{description:"Returns a random number between 0 and 1",abstract:"Returns a random number between 0 and 1",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",abstract:"Returns an array of random numbers between 0 and 1.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to be returned"},columns:{name:"columns",detail:"The number of columns to be returned"},min:{name:"min",detail:"The minimum number you would like returned"},max:{name:"max",detail:"The maximum number you would like returned"},wholeNumber:{name:"whole_number",detail:"Return a whole number or a decimal value"}}},RANDBETWEEN:{description:"Returns a random number between the numbers you specify",abstract:"Returns a random number between the numbers you specify",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"bottom",detail:"The smallest integer RANDBETWEEN will return."},top:{name:"top",detail:"The largest integer RANDBETWEEN will return."}}},ROMAN:{description:"Converts an Arabic numeral to Roman, as text",abstract:"Converts an Arabic numeral to Roman, as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"number",detail:"The Arabic numeral you want converted."},form:{name:"form",detail:"A number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases."}}},ROUND:{description:"Rounds a number to a specified number of digits",abstract:"Rounds a number to a specified number of digits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDBANK:{description:"Rounds a number in banker's rounding",abstract:"Rounds a number in banker's rounding",links:[{title:"Instruction",url:""}],functionParameter:{number:{name:"number",detail:"The number that you want to round in banker's rounding."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round in banker's rounding."}}},ROUNDDOWN:{description:"Rounds a number down, toward zero",abstract:"Rounds a number down, toward zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},ROUNDUP:{description:"Rounds a number up, away from zero",abstract:"Rounds a number up, away from zero",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"number",detail:"The number that you want to round."},numDigits:{name:"num_digits",detail:"The number of digits to which you want to round the number argument."}}},SEC:{description:"Returns the secant of an angle",abstract:"Returns the secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the secant."}}},SECH:{description:"Returns the hyperbolic secant of an angle",abstract:"Returns the hyperbolic secant of an angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"number",detail:"Number is the angle in radians for which you want the hyperbolic secant."}}},SERIESSUM:{description:"Returns the sum of a power series based on the formula",abstract:"Returns the sum of a power series based on the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"The input value to the power series."},n:{name:"n",detail:"The initial power to which you want to raise x."},m:{name:"m",detail:"The step by which to increase n for each term in the series."},coefficients:{name:"coefficients",detail:"A set of coefficients by which each successive power of x is multiplied."}}},SEQUENCE:{description:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",abstract:"Generates a list of sequential numbers in an array, such as 1, 2, 3, 4",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"rows",detail:"The number of rows to return."},columns:{name:"columns",detail:"The number of columns to return."},start:{name:"start",detail:"The first number in the sequence."},step:{name:"step",detail:"The amount to increment each subsequent value in the array."}}},SIGN:{description:"Returns the sign of a number",abstract:"Returns the sign of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SIN:{description:"Returns the sine of the given angle",abstract:"Returns the sine of the given angle",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the sine."}}},SINH:{description:"Returns the hyperbolic sine of a number",abstract:"Returns the hyperbolic sine of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},SQRT:{description:"Returns a positive square root",abstract:"Returns a positive square root",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"number",detail:"The number for which you want the square root."}}},SQRTPI:{description:"Returns the square root of (number * pi)",abstract:"Returns the square root of (number * pi)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"number",detail:"The number by which pi is multiplied."}}},SUBTOTAL:{description:"Returns a subtotal in a list or database.",abstract:"Returns a subtotal in a list or database",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"function_num",detail:"The number 1-11 or 101-111 that specifies the function to use for the subtotal. 1-11 includes manually-hidden rows, while 101-111 excludes them; filtered-out cells are always excluded."},ref1:{name:"ref1",detail:"The first named range or reference for which you want the subtotal."},ref2:{name:"ref2",detail:"Named ranges or references 2 to 254 for which you want the subtotal."}}},SUM:{description:"You can add individual values, cell references or ranges or a mix of all three.",abstract:"Adds its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"Number 1",detail:"The first number you want to add. The number can be like 4, a cell reference like B6, or a cell range like B2:B8."},number2:{name:"Number 2",detail:"This is the second number you want to add. You can specify up to 255 numbers in this way."}}},SUMIF:{description:"Sum the values in a range that meet criteria that you specify.",abstract:"Adds the cells specified by a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"range",detail:"The range of cells that you want evaluated by criteria."},criteria:{name:"criteria",detail:"The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. Wildcard characters can be included - a question mark (?) to match any single character, an asterisk (*) to match any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character."},sumRange:{name:"sum_range",detail:"The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied)."}}},SUMIFS:{description:"Adds all of its arguments that meet multiple criteria.",abstract:"Adds all of its arguments that meet multiple criteria.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"sum_range",detail:"The range of cells to sum."},criteriaRange1:{name:"criteria_range1 ",detail:"The range that is tested using criteria1. criteria_range1 and criteria1 set up a search pair whereby a range is searched for specific criteria. Once items in the range are found, their corresponding values in sum_range are added."},criteria1:{name:"criteria1",detail:'The criteria that defines which cells in criteria_range1 will be added. For example, criteria can be entered as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 range pairs."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria pairs."}}},SUMPRODUCT:{description:"Returns the sum of the products of corresponding array components",abstract:"Returns the sum of the products of corresponding array components",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"array",detail:"The first array argument whose components you want to multiply and then add."},array2:{name:"array",detail:"Array arguments 2 to 255 whose components you want to multiply and then add."}}},SUMSQ:{description:"Returns the sum of the squares of the arguments",abstract:"Returns the sum of the squares of the arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"number1",detail:"To square and find the first number, you can also use a single array or a reference to an array instead of comma-separated parameters."},number2:{name:"number2",detail:"The second number to be squared and summed. Up to 255 numbers can be specified in this way."}}},SUMX2MY2:{description:"Returns the sum of the difference of squares of corresponding values in two arrays",abstract:"Returns the sum of the difference of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMX2PY2:{description:"Returns the sum of the sum of squares of corresponding values in two arrays",abstract:"Returns the sum of the sum of squares of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},SUMXMY2:{description:"Returns the sum of squares of differences of corresponding values in two arrays",abstract:"Returns the sum of squares of differences of corresponding values in two arrays",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"array_x",detail:"The first array or range of values."},arrayY:{name:"array_y",detail:"The second array or range of values."}}},TAN:{description:"Returns the tangent of a number.",abstract:"Returns the tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"number",detail:"The angle in radians for which you want the tangent."}}},TANH:{description:"Returns the hyperbolic tangent of a number.",abstract:"Returns the hyperbolic tangent of a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"number",detail:"Any real number."}}},TRUNC:{description:"Truncates a number to an integer",abstract:"Truncates a number to an integer",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"number",detail:"The number you want to truncate."},numDigits:{name:"num_digits",detail:"A number specifying the precision of the truncation. The default value for num_digits is 0 (zero)."}}}},...{AVEDEV:{description:"Returns the average of the absolute deviations of data points from their mean.",abstract:"Returns the average of the absolute deviations of data points from their mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE:{description:"Returns the average (arithmetic mean) of the arguments.",abstract:"Returns the average of its arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the average."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGE_WEIGHTED:{description:"Finds the weighted average of a set of values, given the values and the corresponding weights.",abstract:"Finds the weighted average of a set of values, given the values and the corresponding weights.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"values",detail:"要计算平均数的值。"},weights:{name:"weights",detail:"要应用的相应权重列表。"},additionalValues:{name:"additional_values",detail:"要计算平均数的其他值。"},additionalWeights:{name:"additional_weights",detail:"要应用的其他权重。"}}},AVERAGEA:{description:"Returns the average of its arguments, including numbers, text, and logical values.",abstract:"Returns the average of its arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range for which you want the average."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."}}},AVERAGEIF:{description:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria.",abstract:"Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteria:{name:"criteria",detail:'The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.'},averageRange:{name:"average_range",detail:"The actual set of cells to average. If omitted, range is used."}}},AVERAGEIFS:{description:"Returns the average (arithmetic mean) of all cells that meet multiple criteria.",abstract:"Returns the average (arithmetic mean) of all cells that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"average_range",detail:"One or more cells to average, including numbers or names, arrays, or references that contain numbers."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:'Used to define the cells for which the average will be calculated. For example, the criteria can be expressed as 32, "32", ">32", "apple", or B4'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},BETA_DIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETA_INV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOM_DIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},BINOM_DIST_RANGE:{description:"Returns the probability of a trial result using a binomial distribution",abstract:"Returns the probability of a trial result using a binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},numberS:{name:"number_s",detail:"The number of successes in trials."},numberS2:{name:"number_s2",detail:"If provided, returns the probability that the number of successful trials will fall between number_s and number_s2."}}},BINOM_INV:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},CHISQ_DIST:{description:"Returns the left-tailed probability of the chi-squared distribution.",abstract:"Returns the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHISQ_DIST_RT:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV:{description:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the left-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_INV_RT:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHISQ_TEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE_NORM:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CONFIDENCE_T:{description:"Returns the confidence interval for a population mean, using a Student's t distribution",abstract:"Returns the confidence interval for a population mean, using a Student's t distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},CORREL:{description:"Returns the correlation coefficient between two data sets",abstract:"Returns the correlation coefficient between two data sets",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COUNT:{description:"Counts the number of cells that contain numbers, and counts numbers within the list of arguments.",abstract:"Counts how many numbers are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"value 1",detail:"The first item, cell reference, or range within which you want to count numbers."},value2:{name:"value 2",detail:"Up to 255 additional items, cell references, or ranges within which you want to count numbers."}}},COUNTA:{description:`Counts cells containing any type of information, including error values and empty text ("") + If you do not need to count logical values, text, or error values`,abstract:"Counts how many values are in the list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"value1",detail:"Required. The first argument representing the values that you want to count."},number2:{name:"value2",detail:"Optional. Additional arguments representing the values that you want to count, up to a maximum of 255 arguments."}}},COUNTBLANK:{description:"Counts the number of blank cells within a range.",abstract:"Counts the number of blank cells within a range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"range",detail:"The range from which you want to count the blank cells."}}},COUNTIF:{description:"Counts the number of cells within a range that meet the given criteria.",abstract:"Counts the number of cells within a range that meet the given criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"range",detail:"The group of cells you want to count. Range can contain numbers, arrays, a named range, or references that contain numbers. Blank and text values are ignored."},criteria:{name:"criteria",detail:`A number, expression, cell reference, or text string that determines which cells will be counted. +For example, you can use a number like 32, a comparison like ">32", a cell like B4, or a word like "apples". +COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple criteria.`}}},COUNTIFS:{description:"Counts the number of cells within a range that meet multiple criteria.",abstract:"Counts the number of cells within a range that meet multiple criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"criteria_range1",detail:"The first range in which to evaluate the associated criteria."},criteria1:{name:"criteria1",detail:'The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32".'},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},COVARIANCE_P:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},COVARIANCE_S:{description:"Returns the sample covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns the sample covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},DEVSQ:{description:"Returns the sum of squares of deviations",abstract:"Returns the sum of squares of deviations",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"number1",detail:"The fist argument for which you want to calculate the sum of squared deviations."},number2:{name:"number2",detail:"The 2 to 255 arguments for which you want to calculate the sum of squared deviations."}}},EXPON_DIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST:{description:"Returns the F probability distribution",abstract:"Returns the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},F_DIST_RT:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV:{description:"Returns the inverse of the F probability distribution",abstract:"Returns the inverse of the F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_INV_RT:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},F_TEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},FISHER:{description:"Returns the Fisher transformation",abstract:"Returns the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"x",detail:"A numeric value for which you want the transformation."}}},FISHERINV:{description:"Returns the inverse of the Fisher transformation",abstract:"Returns the inverse of the Fisher transformation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"y",detail:"The value for which you want to perform the inverse of the transformation."}}},FORECAST:{description:"Returns a value along a linear trend",abstract:"Returns a value along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FORECAST_ETS:{description:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",abstract:"Returns a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_CONFINT:{description:"Returns a confidence interval for the forecast value at the specified target date",abstract:"Returns a confidence interval for the forecast value at the specified target date",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_SEASONALITY:{description:"Returns the length of the repetitive pattern Excel detects for the specified time series",abstract:"Returns the length of the repetitive pattern Excel detects for the specified time series",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_STAT:{description:"Returns a statistical value as a result of time series forecasting",abstract:"Returns a statistical value as a result of time series forecasting",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_LINEAR:{description:"Returns a future value based on existing values",abstract:"Returns a future value based on existing values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"The data point for which you want to predict a value."},knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},FREQUENCY:{description:"Returns a frequency distribution as a vertical array",abstract:"Returns a frequency distribution as a vertical array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"data_array",detail:"An array of or reference to a set of values for which you want to count frequencies. If data_array contains no values, FREQUENCY returns an array of zeros."},binsArray:{name:"bins_array",detail:"An array of or reference to intervals into which you want to group the values in data_array. If bins_array contains no values, FREQUENCY returns the number of elements in data_array."}}},GAMMA:{description:"Returns the Gamma function value",abstract:"Returns the Gamma function value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"number",detail:"Input value to the gamma function."}}},GAMMA_DIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMA_INV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},GAMMALN:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN."}}},GAMMALN_PRECISE:{description:"Returns the natural logarithm of the gamma function, Γ(x)",abstract:"Returns the natural logarithm of the gamma function, Γ(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"The value for which you want to calculate GAMMALN.PRECISE."}}},GAUSS:{description:"Returns 0.5 less than the standard normal cumulative distribution",abstract:"Returns 0.5 less than the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},GEOMEAN:{description:"Returns the geometric mean",abstract:"Returns the geometric mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the geometric mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the geometric mean, up to a maximum of 255."}}},GROWTH:{description:"Returns values along an exponential trend",abstract:"Returns values along an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},newXs:{name:"new_x's",detail:"Are new x-values for which you want GROWTH to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."}}},HARMEAN:{description:"Returns the harmonic mean",abstract:"Returns the harmonic mean",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the harmonic mean."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the harmonic mean, up to a maximum of 255."}}},HYPGEOM_DIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},INTERCEPT:{description:"Returns the intercept of the linear regression line",abstract:"Returns the intercept of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},KURT:{description:"Returns the kurtosis of a data set",abstract:"Returns the kurtosis of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the kurtosis."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the kurtosis, up to a maximum of 255."}}},LARGE:{description:"Returns the k-th largest value in a data set",abstract:"Returns the k-th largest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th largest value."},k:{name:"k",detail:"The position (from the largest) in the array or cell range of data to return."}}},LINEST:{description:"Returns the parameters of a linear trend",abstract:"Returns the parameters of a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGEST:{description:"Returns the parameters of an exponential trend",abstract:"Returns the parameters of an exponential trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = b*m^x."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = b*m^x."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 1."},stats:{name:"stats",detail:"A logical value specifying whether to return additional regression statistics."}}},LOGNORM_DIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGNORM_INV:{description:"Returns the inverse of the lognormal cumulative distribution",abstract:"Returns the inverse of the lognormal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},MARGINOFERROR:{description:"Calculates the margin of error from a range of values and a confidence level.",abstract:"Calculates the margin of error from a range of values and a confidence level.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"range",detail:"The range of values used to calculate the margin of error."},confidence:{name:"confidence",detail:"The desired confidence level between (0, 1)."}}},MAX:{description:"Returns the largest value in a set of values.",abstract:"Returns the maximum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the maximum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the maximum value from, up to a maximum of 255."}}},MAXA:{description:"Returns the maximum value in a list of arguments, including numbers, text, and logical values.",abstract:"Returns the maximum value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"value1",detail:"The first number argument for which you want to find the largest value."},value2:{name:"value2",detail:"Number arguments 2 to 255 for which you want to find the largest value."}}},MAXIFS:{description:"Returns the maximum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the maximum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"sum_range",detail:"The range of cells to max."},criteriaRange1:{name:"criteria_range1 ",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as maximum. "},criteriaRange2:{name:"criteriaRange2",detail:"Additional ranges. You can enter up to 127 ranges."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MEDIAN:{description:"Returns the median of the given numbers",abstract:"Returns the median of the given numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the given numbers."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the given numbers, up to a maximum of 255."}}},MIN:{description:"Returns the smallest number in a set of values.",abstract:"Returns the minimum value in a list of arguments",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range to calculate the minimum value from."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINA:{description:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",abstract:"Returns the smallest value in a list of arguments, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"value1",detail:"The first number, cell reference, or range to calculate the minimum value from."},value2:{name:"value2",detail:"Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."}}},MINIFS:{description:"Returns the minimum value among cells specified by a given set of conditions or criteria.",abstract:"Returns the minimum value among cells specified by a given set of conditions or criteria",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"min_range",detail:"The actual range of cells in which the minimum value will be determined."},criteriaRange1:{name:"criteria_range1",detail:"Is the set of cells to evaluate with the criteria."},criteria1:{name:"criteria1",detail:"Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as minimum. The same set of criteria works for the MAXIFS, SUMIFS and AVERAGEIFS functions."},criteriaRange2:{name:"criteria_range2",detail:"Additional ranges. You can enter up to 127 range."},criteria2:{name:"criteria2",detail:"Additional associated criteria. You can enter up to 127 criteria."}}},MODE_MULT:{description:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",abstract:"Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},MODE_SNGL:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOM_DIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_DIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_INV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORM_S_DIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORM_S_INV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PEARSON:{description:"Returns the Pearson product moment correlation coefficient",abstract:"Returns the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},PERCENTILE_EXC:{description:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",abstract:"Returns the k-th percentile of values in a data set (Excludes 0 and 1).",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Excludes 0 and 1)."}}},PERCENTILE_INC:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK_EXC:{description:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.EXC uses three digits (0.xxx)."}}},PERCENTRANK_INC:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},PERMUT:{description:"Returns the number of permutations for a given number of objects",abstract:"Returns the number of permutations for a given number of objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PERMUTATIONA:{description:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",abstract:"Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"number",detail:"The number of items."},numberChosen:{name:"number_chosen",detail:"The number of items in each permutations."}}},PHI:{description:"Returns the value of the density function for a standard normal distribution",abstract:"Returns the value of the density function for a standard normal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X is the number for which you want the density of the standard normal distribution."}}},POISSON_DIST:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},PROB:{description:"Returns the probability that values in a range are between two limits",abstract:"Returns the probability that values in a range are between two limits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"x_range",detail:"The range of numeric values of x with which there are associated probabilities."},probRange:{name:"prob_range",detail:"A set of probabilities associated with values in x_range."},lowerLimit:{name:"lower_limit",detail:"The lower bound on the value for which you want a probability."},upperLimit:{name:"upper_limit",detail:"The upper bound on the value for which you want a probability."}}},QUARTILE_EXC:{description:"Returns the quartile of a data set (Excludes 0 and 1)",abstract:"Returns the quartile of a data set (Excludes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},QUARTILE_INC:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK_AVG:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RANK_EQ:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},RSQ:{description:"Returns the square of the Pearson product moment correlation coefficient",abstract:"Returns the square of the Pearson product moment correlation coefficient",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"array1",detail:"The dependent array or range of data."},array2:{name:"array2",detail:"The independent array or range of data."}}},SKEW:{description:"Returns the skewness of a distribution",abstract:"Returns the skewness of a distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SKEW_P:{description:"Returns the skewness of a distribution based on a population",abstract:"Returns the skewness of a distribution based on a population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want the skewness."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want the skewness, up to a maximum of 255."}}},SLOPE:{description:"Returns the slope of the linear regression line",abstract:"Returns the slope of the linear regression line",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},SMALL:{description:"Returns the k-th smallest value in a data set",abstract:"Returns the k-th smallest value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want to determine the k-th smallest value."},k:{name:"k",detail:"The position (from the smallest) in the array or cell range of data to return."}}},STANDARDIZE:{description:"Returns a normalized value",abstract:"Returns a normalized value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"The value you want to normalize."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},STDEV_P:{description:"Calculates standard deviation based on the entire population given as arguments (ignores logical values and text).",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEV_S:{description:"Estimates standard deviation based on a sample (ignores logical values and text in the sample).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVA:{description:"Estimates standard deviation based on a sample, including numbers, text, and logical values.",abstract:"Estimates standard deviation based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVPA:{description:"Calculates standard deviation based on the entire population given as arguments, including text and logical values.",abstract:"Calculates standard deviation based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STEYX:{description:"Returns the standard error of the predicted y-value for each x in the regression",abstract:"Returns the standard error of the predicted y-value for each x in the regression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"known_y's",detail:"The dependent array or range of data."},knownXs:{name:"known_x's",detail:"The independent array or range of data."}}},T_DIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},T_DIST_2T:{description:"Returns the probability for the Student t-distribution (two-tailed)",abstract:"Returns the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_DIST_RT:{description:"Returns the probability for the Student t-distribution (right-tailed)",abstract:"Returns the probability for the Student t-distribution (right-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV:{description:"Returns the inverse of the probability for the Student t-distribution",abstract:"Returns the inverse of the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_INV_2T:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},T_TEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, T.TEST uses the one-tailed distribution. If tails = 2, T.TEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},TREND:{description:"Returns values along a linear trend",abstract:"Returns values along a linear trend",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"known_y's",detail:"The set of y-values you already know in the relationship y = m*x+b."},knownXs:{name:"known_x's",detail:"The set of x-values you already know in the relationship y = m*x+b."},newXs:{name:"new_x's",detail:"Are new x-values for which you want TREND to return corresponding y-values."},constb:{name:"const",detail:"A logical value specifying whether to force the constant b to equal 0."}}},TRIMMEAN:{description:"Returns the mean of the interior of a data set",abstract:"Returns the mean of the interior of a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"array",detail:"The array or range of values to trim and average."},percent:{name:"percent",detail:"The fractional number of data points to exclude from the calculation."}}},VAR_P:{description:"Calculates variance based on the entire population (ignores logical values and text in the population).",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a population."}}},VAR_S:{description:"Estimates variance based on a sample (ignores logical values and text in the sample).",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 254 corresponding to a sample of a population."}}},VARA:{description:"Estimates variance based on a sample, including numbers, text, and logical values",abstract:"Estimates variance based on a sample, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"value1",detail:"The value number argument corresponding to a sample of a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a sample of a population."}}},VARPA:{description:"Calculates variance based on the entire population, including numbers, text, and logical values",abstract:"Calculates variance based on the entire population, including numbers, text, and logical values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"value1",detail:"The first value argument corresponding to a population."},value2:{name:"value2",detail:"Value arguments 2 to 254 corresponding to a population."}}},WEIBULL_DIST:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},Z_TEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ADDRESS:{description:`Obtain the address of a cell in a worksheet, given specified row and column numbers. For example, ADDRESS(2,3) returns $C$2. As another example, ADDRESS(77,300) returns $KN$77. You can use other functions, such as the ROW and COLUMN functions, to provide the row and column number arguments for the ADDRESS function. + + `,abstract:"Returns a reference as text to a single cell in a worksheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"row number",detail:"A numeric value that specifies the row number to use in the cell reference."},column_num:{name:"column number",detail:"A numeric value that specifies the column number to use in the cell reference."},abs_num:{name:"type of reference",detail:"A numeric value that specifies the type of reference to return."},a1:{name:"style of reference",detail:"A logical value that specifies the A1 or R1C1 reference style. In A1 style, columns are labeled alphabetically, and rows are labeled numerically. In R1C1 reference style, both columns and rows are labeled numerically. If the A1 argument is TRUE or omitted, the ADDRESS function returns an A1-style reference; if FALSE, the ADDRESS function returns an R1C1-style reference."},sheet_text:{name:"worksheet name",detail:'A text value that specifies the name of the worksheet to be used as the external reference. For example, the formula =ADDRESS(1,1,,,"Sheet2") returns Sheet2!$A$1. If the sheet_text argument is omitted, no sheet name is used, and the address returned by the function refers to a cell on the current sheet.'}}},AREAS:{description:"Returns the number of areas in a reference",abstract:"Returns the number of areas in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells and can refer to multiple areas."}}},CHOOSE:{description:"Chooses a value from a list of values.",abstract:"Chooses a value from a list of values",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"index_num",detail:`Specifies which value argument is selected. Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number between 1 and 254. +If index_num is 1, CHOOSE returns value1; if it is 2, CHOOSE returns value2; and so on. +If index_num is less than 1 or greater than the number of the last value in the list, CHOOSE returns the #VALUE! error value. +If index_num is a fraction, it is truncated to the lowest integer before being used.`},value1:{name:"value1",detail:"CHOOSE selects a value or an action to perform based on index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or text."},value2:{name:"value2",detail:"1 to 254 value arguments."}}},CHOOSECOLS:{description:"Returns the specified columns from an array",abstract:"Returns the specified columns from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"array",detail:"The array containing the columns to be returned in the new array."},colNum1:{name:"col_num1",detail:"The first column to be returned."},colNum2:{name:"col_num2",detail:"Additional columns to be returned."}}},CHOOSEROWS:{description:"Returns the specified rows from an array",abstract:"Returns the specified rows from an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"array",detail:"The array containing the rows to be returned in the new array."},rowNum1:{name:"row_num1",detail:"The first row number to be returned."},rowNum2:{name:"row_num2",detail:"Additional row numbers to be returned."}}},COLUMN:{description:"Returns the column number of the given cell reference.",abstract:"Returns the column number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want to return the column number."}}},COLUMNS:{description:"Returns the number of columns in an array or reference.",abstract:"Returns the number of columns in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"array",detail:"An array or array formula, or a reference to a range of cells for which you want the number of columns."}}},DROP:{description:"Excludes a specified number of rows or columns from the start or end of an array",abstract:"Excludes a specified number of rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"array",detail:"The array from which to drop rows or columns."},rows:{name:"rows",detail:"The number of rows to drop. A negative value drops from the end of the array."},columns:{name:"columns",detail:"The number of columns to exclude. A negative value drops from the end of the array."}}},EXPAND:{description:"Expands or pads an array to specified row and column dimensions",abstract:"Expands or pads an array to specified row and column dimensions",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"array",detail:"The array to expand."},rows:{name:"rows",detail:"The number of rows in the expanded array. If missing, rows will not be expanded."},columns:{name:"columns",detail:"The number of columns in the expanded array. If missing, columns will not be expanded."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},FILTER:{description:"Filters a range of data based on criteria you define",abstract:"Filters a range of data based on criteria you define",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"array",detail:"The range or array to filter."},include:{name:"include",detail:"An array of Boolean values ​​where TRUE indicates that a row or column is to be retained."},ifEmpty:{name:"if_empty",detail:"If no items are reserved, return."}}},FORMULATEXT:{description:"Returns the formula at the given reference as text",abstract:"Returns the formula at the given reference as text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"reference",detail:"A reference to a cell or range of cells."}}},GETPIVOTDATA:{description:"Returns data stored in a PivotTable report",abstract:"Returns data stored in a PivotTable report",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},HLOOKUP:{description:"Looks in the top row of an array and returns the value of the indicated cell",abstract:"Looks in the top row of an array and returns the value of the indicated cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to be found in the first row of the table. Lookup_value can be a value, a reference, or a text string."},tableArray:{name:"table_array",detail:"A table of information in which data is looked up. Use a reference to a range or a range name."},rowIndexNum:{name:"row_index_num",detail:"The row number in table_array from which the matching value will be returned. A row_index_num of 1 returns the first row value in table_array, a row_index_num of 2 returns the second row value in table_array, and so on. "},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match."}}},HSTACK:{description:"Appends arrays horizontally and in sequence to return a larger array",abstract:"Appends arrays horizontally and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},HYPERLINK:{description:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",abstract:"Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hyperlink-function-333c7ce6-c5ae-4164-9c47-7de9b76f577f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},IMAGE:{description:"Returns an image from a given source",abstract:"Returns an image from a given source",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},INDEX:{description:"Returns the reference of the cell at the intersection of a particular row and column. If the reference is made up of non-adjacent selections, you can pick the selection to look in.",abstract:"Uses an index to choose a value from a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"reference",detail:"A reference to one or more cell ranges."},rowNum:{name:"row_num",detail:"The number of the row in reference from which to return a reference."},columnNum:{name:"column_num",detail:"The number of the column in reference from which to return a reference."},areaNum:{name:"area_num",detail:"Selects a range in reference from which to return the intersection of row_num and column_num."}}},INDIRECT:{description:"Returns the reference specified by a text string. References are immediately evaluated to display their contents.",abstract:"Returns a reference indicated by a text value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"ref_text",detail:"A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. "},a1:{name:"a1",detail:"A logical value that specifies what type of reference is contained in the cell ref_text."}}},LOOKUP:{description:"When you need to look in a single row or column and find a value from the same position in a second row or column",abstract:"Looks up values in a vector or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"A value that LOOKUP searches for in the first vector. Lookup_value can be a number, text, a logical value, or a name or reference that refers to a value."},lookupVectorOrArray:{name:"lookup_vectorOrArray",detail:"A range that contains only one row or one column"},resultVector:{name:"result_vector",detail:"A range that contains only one row or column. The result_vector argument must be the same size as lookup_vector."}}},MATCH:{description:"The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.",abstract:"Looks up values in a reference or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value that you want to match in lookup_array."},lookupArray:{name:"lookup_array",detail:"The range of cells being searched."},matchType:{name:"match_type",detail:"The number -1, 0, or 1."}}},OFFSET:{description:"Returns a reference offset from a given reference",abstract:"Returns a reference offset from a given reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"reference",detail:"The reference from which you want to base the offset."},rows:{name:"rows",detail:"The number of rows, up or down, that you want the upper-left cell to refer to."},cols:{name:"columns",detail:"The number of columns, to the left or right, that you want the upper-left cell of the result to refer to."},height:{name:"height",detail:"The height, in number of rows, that you want the returned reference to be. Height must be a positive number."},width:{name:"width",detail:"The width, in number of columns, that you want the returned reference to be. Width must be a positive number."}}},ROW:{description:"Returns the row number of a reference",abstract:"Returns the row number of a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"reference",detail:"The cell or range of cells for which you want the row number."}}},ROWS:{description:"Returns the number of rows in an array or reference.",abstract:"Returns the number of rows in a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"array",detail:"An array, an array formula, or a reference to a range of cells for which you want the number of rows."}}},RTD:{description:"Retrieves real-time data from a program that supports COM automation",abstract:"Retrieves real-time data from a program that supports COM automation",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},SORT:{description:"Sorts the contents of a range or array",abstract:"Sorts the contents of a range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},sortIndex:{name:"sort_index",detail:"A number indicating the sort order (by row or by column)."},sortOrder:{name:"sort_order",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byCol:{name:"by_col",detail:"Logical value indicating the desired sort direction; FALSE sorts by rows (default), TRUE sorts by columns."}}},SORTBY:{description:"Sorts the contents of a range or array based on the values in a corresponding range or array",abstract:"Sorts the contents of a range or array based on the values in a corresponding range or array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"array",detail:"The range or array to be sorted."},byArray1:{name:"by_array1",detail:"The range or array to sort based on."},sortOrder1:{name:"sort_order1",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."},byArray2:{name:"by_array2",detail:"The range or array to sort based on."},sortOrder2:{name:"sort_order2",detail:"A number representing the desired sort order; 1 for ascending (default), -1 for descending."}}},TAKE:{description:"Returns a specified number of contiguous rows or columns from the start or end of an array",abstract:"Returns a specified number of contiguous rows or columns from the start or end of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"array",detail:"The array from which to take rows or columns."},rows:{name:"rows",detail:"The number of rows to take. A negative value takes from the end of the array."},columns:{name:"columns",detail:"The number of columns to take. A negative value takes from the end of the array."}}},TOCOL:{description:"Returns the array in a single column",abstract:"Returns the array in a single column",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a column."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TOROW:{description:"Returns the array in a single row",abstract:"Returns the array in a single row",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"array",detail:"The array or reference to return as a row."},ignore:{name:"ignore",detail:`Whether to ignore certain types of values. By default, no values are ignored. Specify one of the following: +0 Keep all values (default) +1 Ignore blanks +2 Ignore errors +3 Ignore blanks and errors`},scanByColumn:{name:"scan_by_column",detail:"Scan the array by column. By default, the array is scanned by row. Scanning determines whether the values are ordered by row or by column."}}},TRANSPOSE:{description:"Returns the transpose of an array",abstract:"Returns the transpose of an array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"array",detail:"A range of cells or an array in a worksheet."}}},UNIQUE:{description:"Returns a list of unique values in a list or range",abstract:"Returns a list of unique values in a list or range",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"array",detail:"The range or array from which unique rows or columns are returned."},byCol:{name:"by_col",detail:"Is a logical value: compares rows to each other and returns unique values ​​= FALSE, or is omitted; compares columns to each other and returns unique values ​​= TRUE."},exactlyOnce:{name:"exactly_once",detail:"Is a logical value: returns rows or columns from the array that appear only once = TRUE; returns all distinct rows or columns from the array = FALSE, or has been omitted."}}},VLOOKUP:{description:"Use VLOOKUP when you need to find things in a table or a range by row. For example, look up a price of an automotive part by the part number, or find an employee name based on their employee ID.",abstract:"Looks in the first column of an array and moves across the row to return the value of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value you want to look up. The value you want to look up must be in the first column of the range of cells you specify in the table_array argument."},tableArray:{name:"table_array",detail:"The range of cells in which the VLOOKUP will search for the lookup_value and the return value. You can use a named range or a table, and you can use names in the argument instead of cell references. "},colIndexNum:{name:"col_index_num",detail:"The column number (starting with 1 for the left-most column of table_array) that contains the return value."},rangeLookup:{name:"range_lookup",detail:"A logical value that specifies whether you want VLOOKUP to find an approximate or an exact match: Approximate match - 1/TRUE, Exact match - 0/FALSE"}}},VSTACK:{description:"Appends arrays vertically and in sequence to return a larger array",abstract:"Appends arrays vertically and in sequence to return a larger array",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"array",detail:"The arrays to append."},array2:{name:"array",detail:"The arrays to append."}}},WRAPCOLS:{description:"Wraps the provided row or column of values by columns after a specified number of elements",abstract:"Wraps the provided row or column of values by columns after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each column."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},WRAPROWS:{description:"Wraps the provided row or column of values by rows after a specified number of elements",abstract:"Wraps the provided row or column of values by rows after a specified number of elements",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"vector",detail:"The vector or reference to wrap."},wrapCount:{name:"wrap_count",detail:"The maximum number of values for each row."},padWith:{name:"pad_with",detail:"The value with which to pad. The default is #N/A."}}},XLOOKUP:{description:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",abstract:"Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn't exist, then XLOOKUP can return the closest (approximate) match. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The value to search for, If omitted, XLOOKUP returns blank cells it finds in lookup_array. "},lookupArray:{name:"lookup_array",detail:"The array or range to search"},returnArray:{name:"return_array",detail:"The array or range to return"},ifNotFound:{name:"if_not_found",detail:"Where a valid match is not found, return the [if_not_found] text you supply. If a valid match is not found, and [if_not_found] is missing, #N/A is returned."},matchMode:{name:"match_mode",detail:"Specify the match type: 0 - Exact match. If none found, return #N/A. This is the default. -1 - Exact match. If none found, return the next smaller item. 1 - Exact match. If none found, return the next larger item. 2 - A wildcard match where *, ?, and ~ have special meaning."},searchMode:{name:"search_mode",detail:"Specify the search mode to use: 1 - Perform a search starting at the first item. This is the default. -1 - Perform a reverse search starting at the last item. 2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. -2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned."}}},XMATCH:{description:"Searches for a specified item in an array or range of cells, and then returns the item's relative position.",abstract:"Returns the relative position of an item in an array or range of cells.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"lookup_value",detail:"The lookup value"},lookupArray:{name:"lookup_array",detail:"The array or range to search"},matchMode:{name:"match_mode",detail:`Specify the match type: +0 - Exact match (default) +-1 - Exact match or next smallest item +1 - Exact match or next largest item +2 - A wildcard match where *, ?, and ~ have special meaning.`},searchMode:{name:"search_mode",detail:`Specify the search type: +1 - Search first-to-last (default) +-1 - Search last-to-first (reverse search). +2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. +-2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned.`}}}},...{DAVERAGE:{description:"Возвращает среднее значение выбранных записей базы данных",abstract:"Возвращает среднее значение выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DCOUNT:{description:"Считает ячейки, содержащие числа в базе данных",abstract:"Считает ячейки, содержащие числа в базе данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DCOUNTA:{description:"Считает непустые ячейки в базе данных",abstract:"Считает непустые ячейки в базе данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DGET:{description:"Извлекает из базы данных одну запись, соответствующую заданным критериям",abstract:"Извлекает из базы данных одну запись, соответствующую заданным критериям",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DMAX:{description:"Возвращает максимальное значение из выбранных записей базы данных",abstract:"Возвращает максимальное значение из выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DMIN:{description:"Возвращает минимальное значение из выбранных записей базы данных",abstract:"Возвращает минимальное значение из выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DPRODUCT:{description:"Умножает значения в определенном поле записей, соответствующих критериям в базе данных",abstract:"Умножает значения в определенном поле записей, соответствующих критериям в базе данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DSTDEV:{description:"Оценивает стандартное отклонение на основе выборки из выбранных записей базы данных",abstract:"Оценивает стандартное отклонение на основе выборки из выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DSTDEVP:{description:"Вычисляет стандартное отклонение на основе всей совокупности выбранных записей базы данных",abstract:"Вычисляет стандартное отклонение на основе всей совокупности выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DSUM:{description:"Складывает числа в столбце поля записей в базе данных, которые соответствуют критериям",abstract:"Складывает числа в столбце поля записей в базе данных, которые соответствуют критериям",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DVAR:{description:"Оценивает дисперсию на основе выборки из выбранных записей базы данных",abstract:"Оценивает дисперсию на основе выборки из выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}},DVARP:{description:"Вычисляет дисперсию на основе всей совокупности выбранных записей базы данных",abstract:"Вычисляет дисперсию на основе всей совокупности выбранных записей базы данных",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"База данных",detail:"интервал ячеек, образующих список или базу данных."},field:{name:"поле",detail:"столбец, используемый функцией."},criteria:{name:"условия",detail:"диапазон ячеек, который содержит задаваемые условия."}}}},...{ASC:{description:"Преобразует символы полного (двойного) байта английских букв или катаканы внутри строки символов в символы половинного (одинарного) байта",abstract:"Преобразует символы полного (двойного) байта английских букв или катаканы внутри строки символов в символы половинного (одинарного) байта",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"текст",detail:"Текст или ссылка на ячейку с текстом, который необходимо изменить. Если текст не содержит полноширинных знаков, он не изменяется."}}},ARRAYTOTEXT:{description:"Возвращает массив текстовых значений из любого указанного диапазона",abstract:"Возвращает массив текстовых значений из любого указанного диапазона",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"массив",detail:"Массив, возвращаемый в виде текста."},format:{name:"формат",detail:`Формат возвращаемых данных. Это может быть одно из двух значений: +0 По умолчанию. Краткий формат, удобный для чтения. +1 Строгий формат, включающий escape-символы и разделители строк. Создает строку, которую можно анализировать при вводе в строку формул. Заключает возвращаемые строки в кавычки, кроме логических значений, чисел и ошибок.`}}},BAHTTEXT:{description:"Преобразует число в текст, используя валютный формат ß (бат)",abstract:"Преобразует число в текст, используя валютный формат ß (бат)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"число",detail:"Число, которое нужно преобразовать в текст, ссылка на ячейку, содержащую число, или формула, дающая в результате числовое значение."}}},CHAR:{description:"Возвращает символ, указанный номером кода",abstract:"Возвращает символ, указанный номером кода",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"число",detail:"Число от 1 до 255, определяющее нужный знак. Знаки выбираются из набора знаков компьютера."}}},CLEAN:{description:"Удаляет все непечатаемые символы из текста",abstract:"Удаляет все непечатаемые символы из текста",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"текст",detail:"Любые данные на листе, из которых нужно удалить непечатаемые знаки."}}},CODE:{description:"Возвращает числовой код для первого символа в текстовой строке",abstract:"Возвращает числовой код для первого символа в текстовой строке",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"текст",detail:"Текст, для которого требуется узнать код первого знака."}}},CONCAT:{description:"Объединяет текст из нескольких диапазонов и/или строк, но не предоставляет аргументы разделителя или IgnoreEmpty.",abstract:"Объединяет текст из нескольких диапазонов и/или строк, но не предоставляет аргументы разделителя или IgnoreEmpty.",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"текст1",detail:"Элемент текста, который нужно присоединить. Строка или массив строк, например диапазон ячеек."},text2:{name:"текст2",detail:"Дополнительные текстовые элементы для объединения. Для текстовых элементов можно указать до 253 аргументов. Каждый из них может быть строкой или массивом строк, например диапазоном ячеек."}}},CONCATENATE:{description:"Объединяет несколько текстовых элементов в один текстовый элемент",abstract:"Объединяет несколько текстовых элементов в один текстовый элемент",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"Текст 1",detail:"Первый элемент для объединения. Элемент может быть текстовым значением, числом или ссылкой на ячейку."},text2:{name:"Текст 2",detail:"Дополнительные текстовые элементы для объединения. Можно использовать до 255 элементов, общей длиной до 8192 символов."}}},DBCS:{description:"Преобразует символы половинного (одинарного) байта английских букв или катаканы внутри строки символов в символы полного (двойного) байта",abstract:"Преобразует символы половинного (одинарного) байта английских букв или катаканы внутри строки символов в символы полного (двойного) байта",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"текст",detail:"Текст или ссылка на ячейку с текстом, который необходимо изменить. Если текст не содержит полуширинных английских букв или знаков катаканы, он не изменяется."}}},DOLLAR:{description:"Преобразует число в текст, используя валютный формат $ (доллар)",abstract:"Преобразует число в текст, используя валютный формат $ (доллар)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"число",detail:"Число, ссылка на ячейку, содержащую число, или формула, вычисление которой дает число."},decimals:{name:"число_знаков",detail:'Число цифр справа от десятичной запятой. Если значение отрицательное, число округляется слева от десятичной запятой. Если аргумент "число_знаков" опущен, то он полагается равным 2.'}}},EXACT:{description:"Проверяет, идентичны ли два текстовых значения",abstract:"Проверяет, идентичны ли два текстовых значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926"}],functionParameter:{text1:{name:"текст1",detail:"Первая текстовая строка."},text2:{name:"текст2",detail:"Вторая текстовая строка."}}},FIND:{description:"Находит одно текстовое значение внутри другого (с учетом регистра)",abstract:"Находит одно текстовое значение внутри другого (с учетом регистра)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"строка поиска",detail:"Строка, которую нужно найти в «Текст для поиска»."},withinText:{name:"текст для поиска",detail:"Первое вхождение текста для поиска «строки поиска»."},startNum:{name:"стартовая позиция",detail:"Позиция символа, с которой начинается поиск в «тексте для поиска». Если опущено, предполагается значение 1."}}},FINDB:{description:"Находит одно текстовое значение внутри другого (с учетом регистра)",abstract:"Находит одно текстовое значение внутри другого (с учетом регистра)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"строка поиска",detail:"Строка, которую нужно найти в «Текст для поиска»."},withinText:{name:"текст для поиска",detail:"Первое вхождение текста для поиска «строки поиска»."},startNum:{name:"стартовая позиция",detail:"Позиция символа, с которой начинается поиск в «тексте для поиска». Если опущено, предполагается значение 1."}}},FIXED:{description:"Форматирует число как текст с фиксированным количеством десятичных знаков",abstract:"Форматирует число как текст с фиксированным количеством десятичных знаков",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a"}],functionParameter:{number:{name:"число",detail:"Число, которое требуется округлить и преобразовать в текст."},decimals:{name:"число_знаков",detail:'Число цифр справа от десятичной запятой. Если значение отрицательное, число округляется слева от десятичной запятой. Если аргумент "число_знаков" опущен, то он полагается равным 2.'},noCommas:{name:"без_разделителей",detail:"Логическое значение, которое, если значение TRUE, не позволяет FIXED включать запятые в возвращаемый текст."}}},LEFT:{description:"Возвращает крайние левые символы из текстового значения",abstract:"Возвращает крайние левые символы из текстового значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},numChars:{name:"количество_знаков",detail:"Количество символов, извлекаемых функцией LEFT."}}},LEFTB:{description:"Возвращает крайние левые символы из текстового значения",abstract:"Возвращает крайние левые символы из текстового значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},numBytes:{name:"количество_байтов",detail:"Указывает в байтах количество символов, извлекаемых функцией LEFTB."}}},LEN:{description:"Возвращает количество символов в текстовой строке",abstract:"Возвращает количество символов в текстовой строке",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"текст",detail:"Текст, длину которого вы хотите узнать. Пробелы считаются символами."}}},LENB:{description:"Возвращает количество байтов, используемых для представления символов в текстовой строке.",abstract:"Возвращает количество байтов, используемых для представления символов в текстовой строке",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"текст",detail:"Текст, длину которого вы хотите узнать. Пробелы считаются символами."}}},LOWER:{description:"Преобразует текст в нижний регистр.",abstract:"Преобразует текст в нижний регистр",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"tекст",detail:"Текст, преобразуемый в нижний регистр."}}},MID:{description:"Возвращает определенное количество символов из текстовой строки, начиная с указанной позиции",abstract:"Возвращает определенное количество символов из текстовой строки, начиная с указанной позиции",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},startNum:{name:"стартовая позиция",detail:"Позиция первого знака, извлекаемого из текста."},numChars:{name:"количество_знаков",detail:"Количество символов, извлекаемых функцией MID."}}},MIDB:{description:"Возвращает определенное количество символов из текстовой строки, начиная с указанной позиции",abstract:"Возвращает определенное количество символов из текстовой строки, начиная с указанной позиции",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},startNum:{name:"стартовая позиция",detail:"Позиция первого знака, извлекаемого из текста."},numBytes:{name:"количество_байтов",detail:"Указывает в байтах количество символов, извлекаемых функцией MIDB."}}},NUMBERSTRING:{description:"Преобразовать числа в китайские строки",abstract:"Преобразовать числа в китайские строки",links:[{title:"Инструкция",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"Числовой",detail:"Числовое значение, преобразуемое в китайскую строку."},type:{name:"тип",detail:`Тип возвращаемого результата. +1. Китайские иероглифы в нижнем регистре +2. Китайские иероглифы в верхнем регистре +3. Чтение и написание китайских иероглифов`}}},NUMBERVALUE:{description:"Преобразует текст в число независимо от региональных стандартов",abstract:"Преобразует текст в число независимо от региональных стандартов",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"текст",detail:"Текст для преобразования в число."},decimalSeparator:{name:"десятичный_разделитель",detail:"Символ, который будет использоваться для разделения дробной и целой части результата."},groupSeparator:{name:"разделитель_групп",detail:"Символ, используемый для разделения групп цифр, например тысяч от сотен и миллионов от тысяч."}}},PHONETIC:{description:"Извлекает фонетические (фуригана) символы из текстовой строки",abstract:"Извлекает фонетические (фуригана) символы из текстовой строки",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},PROPER:{description:"Преобразует первый символ каждого слова в текстовом значении в заглавную букву",abstract:"Преобразует первый символ каждого слова в текстовом значении в заглавную букву",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94"}],functionParameter:{text:{name:"текст",detail:"Текст в кавычках, формула, возвращающая текст, либо ссылка на ячейку, содержащую текст, в котором требуется заменить некоторые буквы на прописные."}}},REGEXEXTRACT:{description:"Извлекает первые части текста, соответствующие регулярному выражению.",abstract:"Извлекает первые части текста, соответствующие регулярному выражению.",links:[{title:"Инструкция",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=ru-Ru"}],functionParameter:{text:{name:"текст",detail:"исходный текст."},regularExpression:{name:"регулярное_выражение",detail:"заданное выражение. Будет показано первое совпадение с ним в тексте."}}},REGEXMATCH:{description:"Проверяет, соответствует ли текст регулярному выражению.",abstract:"Проверяет, соответствует ли текст регулярному выражению.",links:[{title:"Инструкция",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=ru-Ru"}],functionParameter:{text:{name:"текст",detail:"текст, в котором проверяется наличие заданного выражения."},regularExpression:{name:"регулярное_выражение",detail:"фраза, которую нужно найти в тексте."}}},REGEXREPLACE:{description:"Заменяет часть строки на другой текст с помощью регулярного выражения.",abstract:"Заменяет часть строки на другой текст с помощью регулярного выражения.",links:[{title:"教学",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=ru-Ru"}],functionParameter:{text:{name:"текст",detail:"текст, часть которого нужно заменить."},regularExpression:{name:"регулярное_выражение",detail:"регулярное выражение. Все совпадения с ним в тексте будут заменены."},replacement:{name:"замена",detail:"текст, который нужно вставить."}}},REPLACE:{description:"Заменяет символы в тексте",abstract:"Заменяет символы в тексте",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"старый текст",detail:"Текст, в котором требуется заменить некоторые символы."},startNum:{name:"стартовая позиция",detail:"Позиция первого символа заменяемого текста."},numChars:{name:"количество_знаков",detail:"Количество символов, замененных функцией REPLACE."},newText:{name:"текст замены",detail:"Текст, который заменит символы в старом тексте."}}},REPLACEB:{description:"Заменяет символы в тексте",abstract:"Заменяет символы в тексте",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"старый текст",detail:"Текст, в котором требуется заменить некоторые символы."},startNum:{name:"стартовая позиция",detail:"Позиция первого символа заменяемого текста."},numBytes:{name:"количество_байтов",detail:"Указывает в байтах количество символов, которые заменяет функция REPLACEB."},newText:{name:"текст замены",detail:"Текст, который заменит символы в старом тексте."}}},REPT:{description:"Повторяет текст заданное количество раз",abstract:"Повторяет текст заданное количество раз",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061"}],functionParameter:{text:{name:"текст",detail:"Повторяемый текст."},numberTimes:{name:"число_повторений",detail:"Положительное число, определяющее, сколько раз требуется повторить текст."}}},RIGHT:{description:"Возвращает крайние правые символы из текстового значения",abstract:"Возвращает крайние правые символы из текстового значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},numChars:{name:"количество_знаков",detail:"Количество символов, извлекаемых функцией RIGHT."}}},RIGHTB:{description:"Возвращает крайние правые символы из текстового значения",abstract:"Возвращает крайние правые символы из текстового значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"текст",detail:"Текстовая строка, содержащая символы, которые требуется извлечь."},numBytes:{name:"количество_байтов",detail:"Указывает в байтах количество символов, извлекаемых функцией RIGHTB."}}},SEARCH:{description:"Находит одно текстовое значение внутри другого (без учета регистра)",abstract:"Находит одно текстовое значение внутри другого (без учета регистра)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"строка поиска",detail:"Строка, которую нужно найти в «Текст для поиска»."},withinText:{name:"текст для поиска",detail:"Первое вхождение текста для поиска «строки поиска»."},startNum:{name:"стартовая позиция",detail:"Позиция символа, с которой начинается поиск в «тексте для поиска». Если опущено, предполагается значение 1."}}},SEARCHB:{description:"Находит одно текстовое значение внутри другого (без учета регистра)",abstract:"Находит одно текстовое значение внутри другого (без учета регистра)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"строка поиска",detail:"Строка, которую нужно найти в «Текст для поиска»."},withinText:{name:"текст для поиска",detail:"Первое вхождение текста для поиска «строки поиска»."},startNum:{name:"стартовая позиция",detail:"Позиция символа, с которой начинается поиск в «тексте для поиска». Если опущено, предполагается значение 1."}}},SUBSTITUTE:{description:"Заменяет новый текст на старый текст в строке текста",abstract:"Заменяет новый текст на старый текст в строке текста",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332"}],functionParameter:{text:{name:"текст",detail:"Текст или ссылка на ячейку, содержащую текст, в котором подставляются знаки."},oldText:{name:"стар_текст",detail:"Заменяемый текст."},newText:{name:"нов_текст",detail:'Текст, на который заменяется "стар_текст".'},instanceNum:{name:"номер_вхождения",detail:'Определяет, какое вхождение фрагмента "стар_текст" нужно заменить фрагментом "нов_текст". Если этот аргумент определен, то заменяется только заданное вхождение фрагмента "стар_текст". В противном случае все вхождения фрагмента "стар_текст" в тексте заменяются фрагментом "нов_текст".'}}},T:{description:"Преобразует свои аргументы в текст",abstract:"Преобразует свои аргументы в текст",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/t-function-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"значение",detail:"Проверяемое значение."}}},TEXT:{description:"Форматирует число и преобразует его в текст",abstract:"Форматирует число и преобразует его в текст",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"значение",detail:"Числовое значение, которое вы хотите преобразовать в текст."},formatText:{name:"формат_текста",detail:"Строка текста, которая определяет форматирование, которое вы хотите применить к указанному значению."}}},TEXTAFTER:{description:"Возвращает текст, который находится после указанного символа или строки",abstract:"Возвращает текст, который находится после указанного символа или строки",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"текст",detail:"Текст, в котором производится поиск. Использовать подстановочные знаки не разрешено."},delimiter:{name:"разделитель",detail:"Текст, помечающий точку, после которой нужно извлечь текст."},instanceNum:{name:"номер_вхождения",detail:"Экземпляр разделителя, после которого вы хотите извлечь текст."},matchMode:{name:"шаблон соответствия",detail:"Определяет, учитывается ли регистр в текстовом поиске. По умолчанию регистр учитывается."},matchEnd:{name:"конец матча",detail:"Рассматривает конец текста как разделитель. По умолчанию текст является точным совпадением."},ifNotFound:{name:"если не найдено",detail:"Значение возвращается, если совпадение не найдено. По умолчанию возвращается значение #N/A."}}},TEXTBEFORE:{description:"Возвращает текст, который находится до указанного символа или строки",abstract:"Возвращает текст, который находится до указанного символа или строки",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"текст",detail:"Текст, в котором производится поиск. Использовать подстановочные знаки не разрешено."},delimiter:{name:"разделитель",detail:"Текст, помечающий точку, после которой нужно извлечь текст."},instanceNum:{name:"номер_вхождения",detail:"Экземпляр разделителя, после которого вы хотите извлечь текст."},matchMode:{name:"шаблон соответствия",detail:"Определяет, учитывается ли регистр в текстовом поиске. По умолчанию регистр учитывается."},matchEnd:{name:"конец матча",detail:"Рассматривает конец текста как разделитель. По умолчанию текст является точным совпадением."},ifNotFound:{name:"если не найдено",detail:"Значение возвращается, если совпадение не найдено. По умолчанию возвращается значение #N/A."}}},TEXTJOIN:{description:"Объединяет текст из нескольких диапазонов и/или строк",abstract:"Объединяет текст из нескольких диапазонов и/или строк",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"разделитель",detail:"Текстовая строка (пустая или с символами в двойных кавычках) или ссылка на действительную текстовую строку."},ignoreEmpty:{name:"игнорировать_пустые",detail:"В случае значения ИСТИНА игнорирует пустые ячейки."},text1:{name:"текст1",detail:"Элемент текста, который нужно присоединить. Текстовая строка или массив строк, например диапазон ячеек."},text2:{name:"текст2",detail:"Дополнительные текстовые элементы для объединения. Для текстовых элементов можно указать до 252 аргументов, включая текст1. Каждый из них может быть текстовой строкой или массивом строк, например диапазоном ячеек."}}},TEXTSPLIT:{description:"Разделяет текстовые строки, используя разделители столбцов и строк",abstract:"Разделяет текстовые строки, используя разделители столбцов и строк",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"текст",detail:"Текст, который нужно разделить."},colDelimiter:{name:"разделитель_столбцов",detail:"Текст, помечающий точку, в которой текст разлит по столбцам."},rowDelimiter:{name:"разделитель_строк",detail:"Текст, помечающий точку, в которую следует слить текст вниз по строкам."},ignoreEmpty:{name:"игнорировать_пустые",detail:"В случае значения ИСТИНА игнорирует пустые ячейки."},matchMode:{name:"шаблон соответствия",detail:"Определяет, учитывается ли регистр в текстовом поиске. По умолчанию регистр учитывается."},padWith:{name:"заполняющее_значение",detail:"Значение, которым нужно дополнить результат. Значение по умолчанию: #N/A."}}},TRIM:{description:"Удаляет из текста все пробелы, за исключением одиночных пробелов между словами.",abstract:"Удаляет пробелы из текста",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"tекст",detail:"Текст, из которого удаляются пробелы."}}},UNICHAR:{description:"Возвращает Юникод-символ, на который ссылается заданное числовое значение",abstract:"Возвращает Юникод-символ, на который ссылается заданное числовое значение",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8"}],functionParameter:{number:{name:"число",detail:"это число Юникод, которое представляет символ."}}},UNICODE:{description:"Возвращает номер (кодовый пункт), соответствующий первому символу текста",abstract:"Возвращает номер (кодовый пункт), соответствующий первому символу текста",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f"}],functionParameter:{text:{name:"текст",detail:"это символ, для которого необходимо установить значение Юникод."}}},UPPER:{description:"Преобразует текст в верхний регистр",abstract:"Преобразует текст в верхний регистр",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"tекст",detail:"Текст, преобразуемый в верхний регистр."}}},VALUE:{description:"Преобразует текстовый аргумент в число",abstract:"Преобразует текстовый аргумент в число",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2"}],functionParameter:{text:{name:"текст",detail:"Текст в кавычках или ссылка на ячейку, содержащую текст, который нужно преобразовать."}}},VALUETOTEXT:{description:"Возвращает текст из любого указанного значения",abstract:"Возвращает текст из любого указанного значения",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"значение",detail:"Значение, возвращаемое в виде текста."},format:{name:"формат",detail:`Формат возвращаемых данных. Это может быть одно из двух значений: +0 По умолчанию. Краткий формат, удобный для чтения. +1 Строгий формат, включающий escape-символы и разделители строк. Создает строку, которую можно анализировать при вводе в строку формул. Заключает возвращаемые строки в кавычки, кроме логических значений, чисел и ошибок.`}}},CALL:{description:"Вызывает процедуру в динамической библиотеке или ресурсе кода",abstract:"Вызывает процедуру в динамической библиотеке или ресурсе кода",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},EUROCONVERT:{description:"Преобразует число в евро, преобразует число из евро в валюту страны-члена еврозоны или преобразует число из одной валюты страны-члена еврозоны в другую, используя евро в качестве промежуточного звена (триангуляция)",abstract:"Преобразует число в евро, преобразует число из евро в валюту страны-члена еврозоны или преобразует число из одной валюты страны-члена еврозоны в другую, используя евро в качестве промежуточного звена (триангуляция)",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},REGISTER_ID:{description:"Возвращает ID регистрации указанной динамической библиотеки (DLL) или ресурса кода, который был ранее зарегистрирован",abstract:"Возвращает ID регистрации указанной динамической библиотеки (DLL) или ресурса кода, который был ранее зарегистрирован",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}}},...{AND:{description:"Returns TRUE if all of its arguments are TRUE",abstract:"Returns TRUE if all of its arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},BYCOL:{description:"Applies a LAMBDA to each column and returns an array of the results",abstract:"Applies a LAMBDA to each column and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by column."},lambda:{name:"lambda",detail:"A LAMBDA that takes a column as a single parameter and calculates one result. The LAMBDA takes a single parameter: A column from array."}}},BYROW:{description:"Applies a LAMBDA to each row and returns an array of the results",abstract:"Applies a LAMBDA to each row and returns an array of the results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"array",detail:"An array to be separated by row."},lambda:{name:"lambda",detail:"A LAMBDA that takes a row as a single parameter and calculates one result. The LAMBDA takes a single parameter: A row from array."}}},FALSE:{description:"Returns the logical value FALSE.",abstract:"Returns the logical value FALSE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"Specifies a logical test to perform",abstract:"Specifies a logical test to perform",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"logical_test",detail:"The condition you want to test."},valueIfTrue:{name:"value_if_true",detail:"The value that you want returned if the result of logical_test is TRUE."},valueIfFalse:{name:"value_if_false",detail:"The value that you want returned if the result of logical_test is FALSE."}}},IFERROR:{description:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",abstract:"Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for an error."},valueIfError:{name:"value_if_error",detail:"The value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!."}}},IFNA:{description:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",abstract:"Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"value",detail:"The argument that is checked for the #N/A error value."},valueIfNa:{name:"value_if_na",detail:"The value to return if the formula evaluates to the #N/A error value."}}},IFS:{description:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",abstract:"Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"logical_test1",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue1:{name:"value_if_true1",detail:"Result to be returned if logical_test1 evaluates to TRUE. Can be empty."},logicalTest2:{name:"logical_test2",detail:"Condition that evaluates to TRUE or FALSE."},valueIfTrue2:{name:"value_if_true2",detail:"Result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN corresponds with a condition logical_testN. Can be empty."}}},LAMBDA:{description:"Use a LAMBDA function to create custom, reusable functions and call them by a friendly name. The new function is available throughout the workbook and called like native Excel functions.",abstract:"Create custom, reusable functions and call them by a friendly name",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"parameter",detail:"A value that you want to pass to the function, such as a cell reference, string or number. You can enter up to 253 parameters. This argument is optional."},calculation:{name:"calculation",detail:"The formula you want to execute and return as the result of the function. It must be the last argument and it must return a result. This argument is required."}}},LET:{description:"Assigns names to calculation results",abstract:"Assigns names to calculation results",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"name1",detail:"The first name to assign. Must start with a letter. Cannot be the output of a formula or conflict with range syntax."},nameValue1:{name:"name_value1",detail:"The value that is assigned to name1."},calculationOrName2:{name:"calculation_or_name2",detail:`One of the following: +1.A calculation that uses all names within the LET function. This must be the last argument in the LET function. +2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required.`},nameValue2:{name:"name_value2",detail:"The value that is assigned to calculation_or_name2."},calculationOrName3:{name:"calculation_or_name3",detail:`One of the following: +1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation. +2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"is the units for number."},toUnit:{name:"to_unit",detail:"is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 2 to 255 complex numbers",abstract:"Returns the product of from 2 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Возвращает свойство ключевого показателя эффективности (KPI) и отображает имя KPI в ячейке. KPI — это количественная мера, такая как ежемесячная валовая прибыль или ежеквартальная текучесть сотрудников, используемая для мониторинга производительности организации.",abstract:"Возвращает свойство ключевого показателя эффективности (KPI) и отображает имя KPI в ячейке. KPI — это количественная мера, такая как ежемесячная валовая прибыль или ежеквартальная текучесть сотрудников, используемая для мониторинга производительности организации.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBEMEMBER:{description:"Возвращает элемент или кортеж из куба. Используйте для проверки существования элемента или кортежа в кубе.",abstract:"Возвращает элемент или кортеж из куба. Используйте для проверки существования элемента или кортежа в кубе.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBEMEMBERPROPERTY:{description:"Возвращает значение свойства элемента из куба. Используйте для проверки существования имени элемента в кубе и для возврата указанного свойства для этого элемента.",abstract:"Возвращает значение свойства элемента из куба. Используйте для проверки существования имени элемента в кубе и для возврата указанного свойства для этого элемента.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBERANKEDMEMBER:{description:"Возвращает n-ого или ранжированного элемента в наборе. Используйте для возврата одного или нескольких элементов в наборе, таких как лучший продавец или топ-10 студентов.",abstract:"Возвращает n-ого или ранжированного элемента в наборе. Используйте для возврата одного или нескольких элементов в наборе, таких как лучший продавец или топ-10 студентов.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBESET:{description:"Определяет вычисляемый набор элементов или кортежей, отправляя выражение набора на сервер, который создает набор, а затем возвращает этот набор в Microsoft Excel.",abstract:"Определяет вычисляемый набор элементов или кортежей, отправляя выражение набора на сервер, который создает набор, а затем возвращает этот набор в Microsoft Excel.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBESETCOUNT:{description:"Возвращает количество элементов в наборе.",abstract:"Возвращает количество элементов в наборе.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},CUBEVALUE:{description:"Возвращает агрегированное значение из куба.",abstract:"Возвращает агрегированное значение из куба.",links:[{title:"Инструкция",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution"},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Возвращает строку, закодированную в формате URL",abstract:"Возвращает строку, закодированную в формате URL",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"tекст",detail:"Строка для кодирования URL-адреса"}}},FILTERXML:{description:"Возвращает конкретные данные из XML-содержимого, используя указанный XPath",abstract:"Возвращает конкретные данные из XML-содержимого, используя указанный XPath",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}},WEBSERVICE:{description:"Возвращает данные с веб-сервиса",abstract:"Возвращает данные с веб-сервиса",links:[{title:"Инструкция",url:"https://support.microsoft.com/ru-ru/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"первый"},number2:{name:"number2",detail:"второй"}}}},...{ARRAY_CONSTRAIN:{description:"Задает размер массива, в который будут помещены результаты.",abstract:"Задает размер массива, в который будут помещены результаты.",links:[{title:"Инструкция",url:"https://support.google.com/docs/answer/3267036?hl=ru&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"массива",detail:"диапазон для ограничения."},numRows:{name:"количество_строк",detail:"количество строк, которое должен содержать результат."},numCols:{name:"количество_столбцов",detail:"количество столбцов, которое должен содержать результат."}}},FLATTEN:{description:"Объединяет все значения из одного или нескольких диапазонов в один столбец.",abstract:"Объединяет все значения из одного или нескольких диапазонов в один столбец.",links:[{title:"Инструкция",url:"https://support.google.com/docs/answer/10307761?hl=ru&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"диапазон1",detail:"Первый диапазон, который необходимо выровнять."},range2:{name:"диапазон2",detail:"Дополнительные диапазоны, которые необходимо выровнять."}}}},...{}},prompt:{helpExample:"ПРИМЕР",helpAbstract:"ОПИСАНИЕ",required:"Обязательно.",optional:"Необязательно."},error:{title:"Ошибка",divByZero:"Ошибка деления на ноль",name:"Ошибка неверного имени",value:"Ошибка в значении",num:"Ошибка числа",na:"Ошибка недоступного значения",cycle:"Ошибка циклической ссылки",ref:"Ошибка неверной ссылки на ячейку",spill:"Диапазон разлива не пуст",calc:"Ошибка вычисления",error:"Ошибка",connect:"Получение данных",null:"Ошибка нулевого значения"},functionType:{financial:"Финансовые",date:"Дата и время",math:"Математика и тригонометрия",statistical:"Статистические",lookup:"Поиск и ссылки",database:"База данных",text:"Текстовые",logical:"Логические",information:"Информационные",engineering:"Инженерные",cube:"Куб",compatibility:"Совместимость",web:"Веб",array:"Массив",univer:"Универсальные",user:"Пользовательские"},moreFunctions:{confirm:"Подтвердить",prev:"Предыдущий",next:"Следующий",searchFunctionPlaceholder:"Поиск функции",allFunctions:"Все функции",syntax:"СИНТАКСИС"},operation:{pasteFormula:"Вставить Формулу"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsNumfmtUiRuRU=t())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"Процент",title:"Формат числа",numfmtType:"Типы форматов",cancel:"Отмена",confirm:"Подтвердить",general:"Общий",accounting:"Бухгалтерский",text:"Текст",number:"Число",currency:"Валюта",date:"Дата",time:"Время",thousandthPercentile:"Разделитель тысяч",preview:"Предпросмотр",dateTime:"Дата и время",decimalLength:"Десятичные знаки",currencyType:"Символ валюты",moreFmt:"Другие форматы",financialValue:"Финансовое значение",roundingCurrency:"Округление валюты",timeDuration:"Продолжительность времени",currencyDes:"Формат валюты используется для представления общих значений валюты. Формат бухгалтерского учета выравнивает столбец значений по десятичным точкам.",accountingDes:"Формат бухгалтерских чисел выравнивает столбец значений по символам валюты и десятичным точкам.",dateType:"Тип даты",dateDes:"Формат даты представляет значения времени и даты как значения даты.",negType:"Тип отрицательного числа",generalDes:"Обычный формат не содержит никакого специфического формата числа.",thousandthPercentileDes:"Формат процента используется для представления обычных чисел. Монетарные и бухгалтерские форматы предоставляют специальный формат для вычислений монетарных значений.",addDecimal:"Увеличить количество десятичных знаков",subtractDecimal:"Уменьшить количество десятичных знаков",customFormat:"Custom Format",customFormatDes:"Generate custom number formats based on existing formats."}}}}); + + +// locale/ru-RU +(function(e,u){typeof exports=="object"&&typeof module<"u"?module.exports=u(require("@univerjs/core"),require("@univerjs/design/locale/ru-RU"),require("@univerjs/docs-ui/locale/ru-RU"),require("@univerjs/sheets/locale/ru-RU"),require("@univerjs/sheets-formula/locale/ru-RU"),require("@univerjs/sheets-formula-ui/locale/ru-RU"),require("@univerjs/sheets-numfmt-ui/locale/ru-RU"),require("@univerjs/sheets-ui/locale/ru-RU"),require("@univerjs/ui/locale/ru-RU")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/ru-RU","@univerjs/docs-ui/locale/ru-RU","@univerjs/sheets/locale/ru-RU","@univerjs/sheets-formula/locale/ru-RU","@univerjs/sheets-formula-ui/locale/ru-RU","@univerjs/sheets-numfmt-ui/locale/ru-RU","@univerjs/sheets-ui/locale/ru-RU","@univerjs/ui/locale/ru-RU"],u):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreRuRU=u(e.UniverCore,e.UniverDesignRuRU,e.UniverDocsUiRuRU,e.UniverSheetsRuRU,e.UniverSheetsFormulaRuRU,e.UniverSheetsFormulaUiRuRU,e.UniverSheetsNumfmtUiRuRU,e.UniverSheetsUiRuRU,e.UniverUiRuRU))})(this,function(e,u,r,i,s,n,U,R,t){"use strict";return e.merge({},u,r,i,s,n,U,R,t)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/vi-VN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/vi-VN.js new file mode 100644 index 00000000..8882d3c2 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/vi-VN.js @@ -0,0 +1,72 @@ +// @univerjs/ui/locale/vi-VN +(function(n,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define(i):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverUiViVN=i())})(this,function(){"use strict";return{ribbon:{start:"Bắt đầu",insert:"Chèn",formulas:"Công thức",data:"Dữ liệu",view:"Xem",others:"Khác",more:"Thêm"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"Microsoft YaHei",SimSun:"SimSun",SimHei:"SimHei",Kaiti:"Kaiti",FangSong:"FangSong",NSimSun:"NSimSun",STXinwei:"STXinwei",STXingkai:"STXingkai",STLiti:"STLiti",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"Bảng phím tắt"},shortcut:{undo:"Hoàn tác",redo:"Làm lại",cut:"Cắt",copy:"Sao chép",paste:"Dán","shortcut-panel":"Mở/Đóng bảng phím tắt"},"common-edit":"Chỉnh sửa thường dùng","toggle-shortcut-panel":"Mở/Đóng bảng phím tắt",clipboard:{authentication:{title:"Không thể truy cập vào bảng nhớ tạm",content:"Vui lòng cho phép Univer truy cập vào bảng nhớ tạm của bạn."}},textEditor:{formulaError:"Vui lòng nhập công thức hợp lệ, ví dụ =SUM(A1)",rangeError:"Vui lòng nhập phạm vi hợp lệ, ví dụ A1:B10"},rangeSelector:{title:"Chọn một phạm vi dữ liệu",addAnotherRange:"Thêm phạm vi",buttonTooltip:"Chọn phạm vi dữ liệu",placeHolder:"Chọn phạm vi hoặc nhập",confirm:"Xác nhận",cancel:"Hủy"},"global-shortcut":"Phím tắt toàn cầu","zoom-slider":{resetTo:"Khôi phục đến"}}}); + + +// @univerjs/docs-ui/locale/vi-VN +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiViVN=n())})(this,function(){"use strict";return{toolbar:{undo:"Hoàn tác",redo:"Làm lại",font:"Phông chữ",fontSize:"Cỡ chữ",bold:"In đậm",italic:"In nghiêng",strikethrough:"Gạch ngang",subscript:"Chỉ số dưới",superscript:"Chỉ số trên",underline:"Gạch chân",textColor:{main:"Màu chữ",right:"Chọn màu"},fillColor:{main:"Màu nền văn bản",right:"Chọn màu nền"},table:{main:"Table",insert:"Insert Table",colCount:"Column count",rowCount:"Row count"},resetColor:"Đặt lại màu",order:"Danh sách có thứ tự",unorder:"Danh sách không thứ tự",alignLeft:"Căn trái",alignCenter:"Căn giữa",alignRight:"Căn phải",alignJustify:"Căn đều hai bên",headerFooter:"Đầu trang và chân trang",checklist:"Task list",documentFlavor:"Modern Mode"},table:{insert:"Insert",insertRowAbove:"Insert row above",insertRowBelow:"Insert row below",insertColumnLeft:"Insert column left",insertColumnRight:"Insert column right",delete:"Table delete",deleteRows:"Delete row",deleteColumns:"Delete column",deleteTable:"Delete table"},headerFooter:{header:"Đầu trang",footer:"Chân trang",panel:"Cài đặt đầu trang và chân trang",firstPageCheckBox:"Trang đầu khác biệt",oddEvenCheckBox:"Trang lẻ chẵn khác biệt",headerTopMargin:"Khoảng cách đầu trang từ trên cùng (px)",footerBottomMargin:"Khoảng cách chân trang từ dưới cùng (px)",closeHeaderFooter:"Đóng đầu trang và chân trang",disableText:"Cài đặt đầu trang và chân trang không khả dụng"},doc:{menu:{paragraphSetting:"Paragraph Setting"},slider:{paragraphSetting:"Paragraph Setting"},paragraphSetting:{alignment:"Alignment",indentation:"Indentation",left:"Left",right:"Right",firstLine:"First Line",hanging:"Hanging",spacing:"Spacing",before:"Before",after:"After",lineSpace:"Line Space",multiSpace:"Multi Space",fixedValue:"Fixed Value(px)"}}}}); + + +// @univerjs/sheets/locale/vi-VN +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsViVN=n())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(Bản sao {0})",sheet:"Bảng tính"},info:{overlappingSelections:"Không thể sử dụng lệnh này trên các vùng chọn chồng chéo nhau",acrossMergedCell:"Không thể vượt qua các ô đã hợp nhất",partOfCell:"Chỉ chọn một phần của ô đã hợp nhất",hideSheet:"Không có bảng tính nào hiển thị sau khi ẩn"}}}}); + + +// @univerjs/sheets-ui/locale/vi-VN +(function(n,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverSheetsUiViVN=t())})(this,function(){"use strict";return{spreadsheetLabel:"Phụ lục",spreadsheetRightLabel:"Thêm Sheets",toolbar:{undo:"Hoàn tác",redo:"Làm lại",formatPainter:"Chổi định dạng",font:"Phông chữ",fontSize:"Cỡ chữ",bold:"In đậm",italic:"In nghiêng",strikethrough:"Gạch ngang",subscript:"Chỉ số dưới",superscript:"Chỉ số trên",underline:"Gạch chân",textColor:{main:"Màu chữ",right:"Chọn màu"},resetColor:"Đặt lại màu",fillColor:{main:"Màu ô",right:"Chọn màu"},border:{main:"Đường viền",right:"Loại đường viền"},mergeCell:{main:"Hợp nhất ô",right:"Chọn loại hợp nhất"},horizontalAlignMode:{main:"Căn ngang",right:"Chọn kiểu căn"},verticalAlignMode:{main:"Căn dọc",right:"Chọn kiểu căn"},textWrapMode:{main:"Ngắt dòng văn bản",right:"Chọn kiểu ngắt"},textRotateMode:{main:"Xoay văn bản",right:"Chọn kiểu xoay"},more:"Thêm",toggleGridlines:"Chuyển đổi đường lưới"},align:{left:"Căn trái",center:"Căn giữa",right:"Căn phải",top:"Căn trên",middle:"Căn giữa",bottom:"Căn dưới"},button:{confirm:"Xác nhận",cancel:"Hủy",close:"Đóng",update:"Cập nhật",delete:"Xóa",insert:"Thêm mới",prevPage:"Trang trước",nextPage:"Trang sau",total:"Tổng cộng:"},punctuation:{tab:"Phím Tab",semicolon:"Dấu chấm phẩy",comma:"Dấu phẩy",space:"Khoảng trắng"},colorPicker:{collapse:"Thu gọn",customColor:"Màu tùy chỉnh",change:"Chuyển đổi",confirmColor:"Xác nhận màu",cancelColor:"Hủy"},borderLine:{borderTop:"Viền trên",borderBottom:"Viền dưới",borderLeft:"Viền trái",borderRight:"Viền phải",borderNone:"Không",borderAll:"Tất cả",borderOutside:"Bên ngoài",borderInside:"Bên trong",borderHorizontal:"Đường ngang bên trong",borderVertical:"Đường dọc bên trong",borderColor:"Màu viền",borderSize:"Độ dày viền",borderType:"Loại đường viền"},merge:{all:"Hợp nhất tất cả",vertical:"Hợp nhất dọc",horizontal:"Hợp nhất ngang",cancel:"Hủy hợp nhất",overlappingError:"Không thể hợp nhất vùng chồng chéo",partiallyError:"Không thể thực hiện thao tác này trên ô đã hợp nhất",confirm:{title:"Hợp nhất ô chỉ giữ giá trị của ô trên cùng bên trái, bạn có muốn tiếp tục không?",cancel:"Hủy hợp nhất",confirm:"Tiếp tục hợp nhất",waring:"Cảnh báo",dismantleMergeCellWaring:"Thao tác này sẽ làm rời một số ô đã hợp nhất, bạn có muốn tiếp tục không?"}},filter:{confirm:{error:"Đã xảy ra sự cố",notAllowedToInsertRange:"Để di chuyển các ô này, hãy xóa bộ lọc khỏi vùng này trước"}},textWrap:{overflow:"Tràn",wrap:"Tự động ngắt dòng",clip:"Cắt bớt"},textRotate:{none:"Không xoay",angleUp:"Góc lên",angleDown:"Góc xuống",vertical:"Dọc",rotationUp:"Xoay lên",rotationDown:"Xoay xuống"},sheetConfig:{delete:"Xóa",copy:"Sao chép",rename:"Đổi tên",changeColor:"Thay đổi màu",hide:"Ẩn",unhide:"Bỏ ẩn",moveLeft:"Di chuyển sang trái",moveRight:"Di chuyển sang phải",resetColor:"Đặt lại màu",cancelText:"Hủy bỏ",chooseText:"Chọn màu",tipNameRepeat:"Tên tab không được trùng! Vui lòng đổi lại",noMoreSheet:"Tài liệu phải có ít nhất một trang bảng hiển thị. Nếu bạn muốn xóa trang bảng đã chọn, vui lòng thêm một trang bảng mới hoặc hiển thị trang bảng đã ẩn.",confirmDelete:"Xác nhận xóa",redoDelete:"Bạn có thể hoàn tác xóa bằng Ctrl+Z",noHide:"Không thể ẩn, phải giữ lại ít nhất một tab trang",chartEditNoOpt:"Không cho phép thao tác này khi đang chỉnh sửa biểu đồ!",sheetNameErrorTitle:"Lỗi",sheetNameSpecCharError:"Tên không được vượt quá 31 ký tự, không bắt đầu hoặc kết thúc bằng ' và không chứa các ký tự: [ ] : \\ ? * /",sheetNameCannotIsEmptyError:"Tên không được để trống.",sheetNameAlreadyExistsError:"Trang bảng đã tồn tại, vui lòng nhập tên khác.",deleteSheet:"Xóa trang bảng",deleteSheetContent:"Xác nhận xóa trang bảng này, sau khi xóa sẽ không thể khôi phục, bạn có chắc chắn muốn xóa không?",addProtectSheet:"Bảo vệ trang bảng",removeProtectSheet:"Bỏ bảo vệ trang bảng",changeSheetPermission:"Thay đổi quyền hạn trang bảng",viewAllProtectArea:"Xem tất cả khu vực được bảo vệ"},rightClick:{copy:"Sao chép",cut:"Cắt",paste:"Dán",pasteSpecial:"Dán đặc biệt",pasteValue:"Chỉ dán giá trị",pasteFormat:"Chỉ dán định dạng",pasteColWidth:"Chỉ dán độ rộng cột",pasteBesidesBorder:"Chỉ dán nội dung ngoài đường viền",insert:"Chèn",delete:"Xóa",insertRow:"Chèn hàng",insertRowBefore:"Chèn hàng phía trên",insertRowsAbove:"chèn",insertRowsAfter:"chèn",insertRowsAfterSuffix:"dòng sau",insertRowsAboveSuffix:"dòng ở trên",insertColumn:"Chèn cột",insertColumnBefore:"Chèn cột bên trái",insertColsLeft:"chèn",insertColsRight:"chèn",insertColsLeftSuffix:"cột sang trái",insertColsRightSuffix:"cột sang phải",deleteCell:"Xóa ô",insertCell:"Chèn ô",deleteSelected:"Xóa đã chọn",hide:"Ẩn",hideSelected:"Ẩn đã chọn",showHide:"Hiển thị ẩn",toTopAdd:"Thêm lên trên",toBottomAdd:"Thêm xuống dưới",toLeftAdd:"Thêm sang trái",toRightAdd:"Thêm sang phải",deleteSelectedRow:"Xóa hàng đã chọn",deleteSelectedColumn:"Xóa cột đã chọn",hideSelectedRow:"Ẩn hàng đã chọn",showHideRow:"Hiển thị ẩn hàng",rowHeight:"Chiều cao hàng",hideSelectedColumn:"Ẩn cột đã chọn",showHideColumn:"Hiển thị ẩn cột",columnWidth:"Độ rộng cột",moveLeft:"Di chuyển sang trái",moveUp:"Di chuyển lên trên",moveRight:"Di chuyển sang phải",moveDown:"Di chuyển xuống dưới",add:"Thêm",row:"Hàng",column:"Cột",confirm:"Xác nhận",clearSelection:"Xóa",clearContent:"Xóa nội dung",clearFormat:"Xóa định dạng",clearAll:"Xóa tất cả",root:"Căn bậc",log:"log",delete0:"Xóa giá trị 0 ở hai đầu",removeDuplicate:"Xóa giá trị trùng lặp",byRow:"Theo hàng",byCol:"Theo cột",generateNewMatrix:"Tạo ma trận mới",fitContent:"Vừa dữ liệu",freeze:"Đóng băng",freezeCol:"Đóng băng cột",freezeRow:"Đóng băng hàng",cancelFreeze:"Hủy đóng băng",deleteAllRowsAlert:"Bạn không thể xóa tất cả các hàng trong trang bảng",deleteAllColumnsAlert:"Bạn không thể xóa tất cả các cột trong trang bảng",hideAllRowsAlert:"Bạn không thể ẩn tất cả các hàng trong trang bảng",hideAllColumnsAlert:"Bạn không thể ẩn tất cả các cột trong trang bảng",protectRange:"Bảo vệ hàng cột",editProtectRange:"Thiết lập phạm vi bảo vệ",removeProtectRange:"Bỏ phạm vi bảo vệ",turnOnProtectRange:"Thêm phạm vi bảo vệ",viewAllProtectArea:"Xem tất cả khu vực được bảo vệ"},info:{tooltip:"Gợi ý",error:"Lỗi",notChangeMerge:"Không thể thay đổi một phần của ô hợp nhất",detailUpdate:"Mở mới",detailSave:"Đã khôi phục từ bộ nhớ đệm cục bộ",row:"Hàng",column:"Cột",loading:"Đang render···",copy:"Bản sao",return:"Quay lại",rename:"Đổi tên",tips:"Đổi tên",noName:"Bảng tính không tiêu đề",wait:"Đang cập nhật",add:"Thêm",addLast:"Thêm vào cuối",backTop:"Quay lại đầu trang",pageInfo:"Tổng cộng ${total} dòng, ${totalPage} trang, hiện đang hiển thị ${currentPage} trang",nextPage:"Trang tiếp theo",tipInputNumber:"Vui lòng nhập số",tipInputNumberLimit:"Phạm vi tăng giới hạn từ 1-100",tipRowHeightLimit:"Chiều cao hàng phải từ 0 ~ 545",tipColumnWidthLimit:"Độ rộng cột phải từ 0 ~ 2038",pageInfoFull:"Tổng cộng ${total} dòng, ${totalPage} trang, đã hiển thị tất cả dữ liệu",problem:"Đã xảy ra một vấn đề",forceStringInfo:"Số được lưu trữ dưới dạng văn bản"},clipboard:{paste:{exceedMaxCells:"Khu vực dán vượt quá số ô tối đa",overlappingMergedCells:"Khu vực dán chồng chéo với các ô hợp nhất"},shortCutNotify:{title:"Vui lòng sử dụng phím tắt để dán",useShortCutInstead:"Phát hiện nội dung Excel, vui lòng sử dụng phím tắt để dán"}},statusbar:{sum:"Tổng",average:"Trung bình",min:"Giá trị nhỏ nhất",max:"Giá trị lớn nhất",count:"Số lượng",countA:"Đếm",clickToCopy:"Nhấp để sao chép giá trị",copied:"Đã sao chép"},autoFill:{copy:"Sao chép ô",series:"Điền chuỗi",formatOnly:"Chỉ điền định dạng",noFormat:"Điền không định dạng"},rangeSelector:{placeholder:"Chọn phạm vi hoặc nhập giá trị",tooltip:"Chọn phạm vi"},shortcut:{sheet:{"zoom-in":"Phóng to","zoom-out":"Thu nhỏ","reset-zoom":"Đặt lại phóng to","select-below-cell":"Chọn ô phía dưới","select-up-cell":"Chọn ô phía trên","select-left-cell":"Chọn ô bên trái","select-right-cell":"Chọn ô bên phải","select-next-cell":"Chọn ô tiếp theo","select-previous-cell":"Chọn ô trước đó","select-up-value-cell":"Chọn ô có giá trị phía trên","select-below-value-cell":"Chọn ô có giá trị phía dưới","select-left-value-cell":"Chọn ô có giá trị bên trái","select-right-value-cell":"Chọn ô có giá trị bên phải","expand-selection-down":"Mở rộng vùng chọn xuống dưới","expand-selection-up":"Mở rộng vùng chọn lên trên","expand-selection-left":"Mở rộng vùng chọn sang trái","expand-selection-right":"Mở rộng vùng chọn sang phải","expand-selection-to-left-gap":"Mở rộng vùng chọn đến biên trái","expand-selection-to-below-gap":"Mở rộng vùng chọn đến biên dưới","expand-selection-to-right-gap":"Mở rộng vùng chọn đến biên phải","expand-selection-to-up-gap":"Mở rộng vùng chọn đến biên trên","select-all":"Chọn tất cả","toggle-editing":"Bắt đầu / Kết thúc chỉnh sửa","delete-and-start-editing":"Xóa và bắt đầu chỉnh sửa","abort-editing":"Hủy chỉnh sửa","break-line":"Xuống dòng","set-bold":"Chuyển sang chữ đậm","set-italic":"Chuyển sang chữ nghiêng","set-underline":"Chuyển sang chữ gạch chân","set-strike-through":"Chuyển sang chữ gạch ngang","start-editing":"Bắt đầu chỉnh sửa (vùng chọn chuyển sang trình chỉnh sửa)"}},"sheet-view":"Xem bảng tính","sheet-edit":"Chỉnh sửa bảng tính",definedName:{managerTitle:"Quản lý tên",managerDescription:"Tạo một tên xác định bằng cách chọn ô hoặc công thức và nhập tên mong muốn vào hộp văn bản.",addButton:"Thêm tên mới",featureTitle:"Tên xác định",ratioRange:"Phạm vi",ratioFormula:"Công thức",confirm:"Xác nhận",cancel:"Hủy",scopeWorkbook:"Sổ làm việc",inputNamePlaceholder:"Vui lòng nhập tên (bắt buộc)",inputCommentPlaceholder:"Vui lòng nhập ghi chú",inputRangePlaceholder:"Vui lòng nhập phạm vi (bắt buộc)",inputFormulaPlaceholder:"Vui lòng nhập công thức (bắt buộc)",nameEmpty:"Tên không được để trống",nameDuplicate:"Tên trùng lặp",formulaOrRefStringEmpty:"Công thức hoặc chuỗi tham chiếu không được để trống",formulaOrRefStringInvalid:"Công thức hoặc chuỗi tham chiếu không hợp lệ",defaultName:"Tên xác định",updateButton:"Cập nhật",deleteButton:"Xóa",deleteConfirmText:"Xác nhận xóa tên xác định?",nameConflict:"Xung đột với tên hàm",nameInvalid:"Tên không chứa khoảng trắng hoặc ký tự không hợp lệ",nameSheetConflict:"Tên xung đột với tên bảng tính"},uploadLoading:{loading:"Đang tải lên, hiện còn lại",error:"Tải thất bại"},permission:{toolbarMenu:"Bảo vệ",panel:{title:"Bảo vệ hàng cột",name:"Tên",protectedRange:"Phạm vi được bảo vệ",permissionDirection:"Mô tả quyền hạn",permissionDirectionPlaceholder:"Vui lòng nhập mô tả quyền hạn",editPermission:"Chỉnh sửa quyền hạn",onlyICanEdit:"Chỉ mình tôi có thể chỉnh sửa",designedUserCanEdit:"Người dùng được chỉ định có thể chỉnh sửa",viewPermission:"Quyền xem",othersCanView:"Người khác có thể xem",noOneElseCanView:"Không ai khác có thể xem",designedPerson:"Người chỉ định",addPerson:"Thêm người",canEdit:"Có thể chỉnh sửa",canView:"Có thể xem",delete:"Xóa",currentSheet:"Trang bảng hiện tại",allSheet:"Tất cả các trang bảng",edit:"Chỉnh sửa",Print:"In",Comment:"Bình luận",Copy:"Sao chép",SetCellStyle:"Thiết lập kiểu ô",SetCellValue:"Thiết lập giá trị ô",SetHyperLink:"Thiết lập liên kết",Sort:"Sắp xếp",Filter:"Lọc",PivotTable:"Bảng xoay dữ liệu",FloatImage:"Hình ảnh nổi",RowHeightColWidth:"Chiều cao hàng và chiều rộng cột",RowHeightColWidthReadonly:"Chỉ đọc chiều cao hàng và chiều rộng cột",FilterReadonly:"Chỉ đọc bộ lọc",nameError:"Tên không được để trống",created:"Đã tạo",iCanEdit:"Tôi có thể chỉnh sửa",iCanNotEdit:"Tôi không thể chỉnh sửa",iCanView:"Tôi có thể xem",iCanNotView:"Tôi không thể xem",emptyRangeError:"Phạm vi không được để trống",rangeOverlapError:"Phạm vi không được chồng chéo",rangeOverlapOverPermissionError:"Phạm vi không được chồng chéo với phạm vi quyền hạn đã có",InsertHyperlink:"Chèn liên kết",SetRowStyle:"Thiết lập kiểu hàng",SetColumnStyle:"Thiết lập kiểu cột",InsertColumn:"Chèn cột",InsertRow:"Chèn hàng",DeleteRow:"Xóa hàng",DeleteColumn:"Xóa cột",EditExtraObject:"Chỉnh sửa đối tượng khác"},dialog:{allowUserToEdit:"Cho phép người dùng chỉnh sửa",allowedPermissionType:"Loại quyền hạn cho phép",setCellValue:"Thiết lập giá trị ô",setCellStyle:"Thiết lập kiểu ô",copy:"Sao chép",alert:"Thông báo",search:"Tìm kiếm",alertContent:"Phạm vi này đã được bảo vệ, hiện không có quyền chỉnh sửa. Nếu cần chỉnh sửa, vui lòng liên hệ với người tạo.",userEmpty:"Không có người chỉ định, chia sẻ liên kết để mời người cụ thể.",listEmpty:"Bạn chưa thiết lập bất kỳ phạm vi hoặc bảng tính nào ở trạng thái được bảo vệ.",commonErr:"Phạm vi này đã được bảo vệ, hiện không có quyền thực hiện thao tác này. Nếu cần chỉnh sửa, vui lòng liên hệ với người tạo.",editErr:"Phạm vi này đã được bảo vệ, hiện không có quyền chỉnh sửa. Nếu cần chỉnh sửa, vui lòng liên hệ với người tạo.",pasteErr:"Phạm vi này đã được bảo vệ, hiện không có quyền dán. Nếu cần dán, vui lòng liên hệ với người tạo.",setStyleErr:"Phạm vi này đã được bảo vệ, hiện không có quyền thiết lập kiểu. Nếu cần thiết lập kiểu, vui lòng liên hệ với người tạo.",copyErr:"Phạm vi này đã được bảo vệ, hiện không có quyền sao chép. Nếu cần sao chép, vui lòng liên hệ với người tạo.",workbookCopyErr:"Sổ làm việc này đã được bảo vệ, hiện không có quyền sao chép. Nếu cần sao chép, vui lòng liên hệ với người tạo.",setRowColStyleErr:"Phạm vi này đã được bảo vệ, hiện không có quyền thiết lập kiểu hàng cột. Nếu cần thiết lập kiểu hàng cột, vui lòng liên hệ với người tạo.",moveRowColErr:"Phạm vi này đã được bảo vệ, hiện không có quyền di chuyển hàng cột. Nếu cần di chuyển hàng cột, vui lòng liên hệ với người tạo.",moveRangeErr:"Phạm vi này đã được bảo vệ, hiện không có quyền di chuyển vùng chọn. Nếu cần di chuyển vùng chọn, vui lòng liên hệ với người tạo.",autoFillErr:"Phạm vi này đã được bảo vệ, hiện không có quyền tự động điền. Nếu cần tự động điền, vui lòng liên hệ với người tạo.",filterErr:"Phạm vi này đã được bảo vệ, hiện không có quyền lọc. Nếu cần lọc, vui lòng liên hệ với người tạo.",operatorSheetErr:"Trang bảng này đã được bảo vệ, hiện không có quyền thao tác trên trang bảng. Nếu cần thao tác trên trang bảng, vui lòng liên hệ với người tạo.",insertOrDeleteMoveRangeErr:"Chèn, xóa vùng chọn trùng với phạm vi bảo vệ, tạm thời không hỗ trợ thao tác này.",printErr:"Trang bảng này đã được bảo vệ, hiện không có quyền in. Nếu cần in, vui lòng liên hệ với người tạo.",formulaErr:"Phạm vi hoặc phạm vi tham chiếu này đã được bảo vệ, hiện không có quyền chỉnh sửa. Nếu cần chỉnh sửa, vui lòng liên hệ với người tạo.",hyperLinkErr:"Phạm vi này đã được bảo vệ, hiện không có quyền thiết lập liên kết. Nếu cần thiết lập liên kết, vui lòng liên hệ với người tạo."},button:{confirm:"Xác nhận",cancel:"Hủy",addNewPermission:"Thêm quyền hạn mới"}}}}); + + +// @univerjs/sheets-formula/locale/vi-VN +(function(n,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define(e):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverSheetsFormulaViVN=e())})(this,function(){"use strict";return{formula:{progress:{analyzing:"Đang phân tích",calculating:"Đang tính toán","array-analysis":"Phân tích mảng","array-calculation":"Tính toán mảng",done:"Hoàn tất"}}}}); + + +// @univerjs/sheets-formula-ui/locale/vi-VN +(function(t,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(t=typeof globalThis<"u"?globalThis:t||self,t.UniverSheetsFormulaUiViVN=n())})(this,function(){"use strict";return{formula:{insert:{tooltip:"Hàm",sum:"Tổng",average:"Giá trị trung bình",count:"Đếm",max:"Giá trị lớn nhất",min:"Giá trị nhỏ nhất",more:"Thêm hàm..."},functionList:{...{ACCRINT:{description:"Trả về lãi tích lũy của một trái phiếu trả lãi định kỳ",abstract:"Trả về lãi tích lũy của một trái phiếu trả lãi định kỳ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/accrint-%E5%87%BD%E6%95%B0-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},firstInterest:{name:"ngày tính lãi đầu tiên",detail:"Ngày tính lãi đầu tiên của chứng khoán."},settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất phiếu lãi hàng năm của chứng khoán."},par:{name:"mệnh giá",detail:"Mệnh giá của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Loại cơ sở đếm ngày sẽ dùng."},calcMethod:{name:"phương pháp tính toán",detail:"Là một giá trị logic: tiền lãi tích lũy từ ngày phát hành = TRUE hoặc bị bỏ qua; được tính từ ngày thanh toán phiếu lãi cuối cùng = FALSE."}}},ACCRINTM:{description:"Trả về lãi tích lũy của một trái phiếu trả lãi khi đáo hạn",abstract:"Trả về lãi tích lũy của một trái phiếu trả lãi khi đáo hạn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/accrintm-%E5%87%BD%E6%95%B0-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất phiếu lãi hàng năm của chứng khoán."},par:{name:"mệnh giá",detail:"Mệnh giá của chứng khoán."},basis:{name:"điểm chuẩn",detail:"Loại cơ sở đếm ngày sẽ dùng."}}},AMORDEGRC:{description:"Trả về giá trị khấu hao cho mỗi kỳ kế toán sử dụng hệ số khấu hao",abstract:"Trả về giá trị khấu hao cho mỗi kỳ kế toán sử dụng hệ số khấu hao",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/amordegrc-%E5%87%BD%E6%95%B0-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"Trả về giá trị khấu hao cho mỗi kỳ kế toán",abstract:"Trả về giá trị khấu hao cho mỗi kỳ kế toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/amorlinc-%E5%87%BD%E6%95%B0-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"trị giá",detail:"Chi phí của tài sản."},datePurchased:{name:"ngày mua",detail:"Ngày mua tài sản."},firstPeriod:{name:"kỳ đầu tiên",detail:"Ngày kết thúc của kỳ thứ nhất."},salvage:{name:"giá trị còn lại",detail:"Giá trị thu hồi khi kết thúc vòng đời của tài sản."},period:{name:"kỳ",detail:"Kỳ."},rate:{name:"tỷ lệ khấu hao",detail:"Tỷ lệ khấu hao."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPDAYBS:{description:"Trả về số ngày từ đầu kỳ trả lãi đến ngày thanh toán",abstract:"Trả về số ngày từ đầu kỳ trả lãi đến ngày thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coupdaybs-%E5%87%BD%E6%95%B0-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPDAYS:{description:"Trả về số ngày trong kỳ trả lãi bao gồm ngày thanh toán",abstract:"Trả về số ngày trong kỳ trả lãi bao gồm ngày thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coupdays-%E5%87%BD%E6%95%B0-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPDAYSNC:{description:"Trả về số ngày từ ngày thanh toán đến ngày trả lãi tiếp theo",abstract:"Trả về số ngày từ ngày thanh toán đến ngày trả lãi tiếp theo",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coupdaysnc-%E5%87%BD%E6%95%B0-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPNCD:{description:"Trả về ngày trả lãi tiếp theo sau ngày thanh toán",abstract:"Trả về ngày trả lãi tiếp theo sau ngày thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coupncd-%E5%87%BD%E6%95%B0-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPNUM:{description:"Trả về số lượng lãi có thể trả giữa ngày thanh toán và ngày đáo hạn",abstract:"Trả về số lượng lãi có thể trả giữa ngày thanh toán và ngày đáo hạn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coupnum-%E5%87%BD%E6%95%B0-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},COUPPCD:{description:"Trả về ngày trả lãi trước đó trước ngày thanh toán",abstract:"Trả về ngày trả lãi trước đó trước ngày thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/couppcd-%E5%87%BD%E6%95%B0-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},CUMIPMT:{description:"Trả về lãi tích lũy trả giữa hai kỳ thanh toán",abstract:"Trả về lãi tích lũy trả giữa hai kỳ thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cumipmt-%E5%87%BD%E6%95%B0-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},startPeriod:{name:"kỳ đầu tiên",detail:"Kỳ đầu tiên trong tính toán này. Các kỳ thanh toán được đánh số bắt đầu từ 1."},endPeriod:{name:"kỳ cuối cùng",detail:"Kỳ cuối cùng trong tính toán này."},type:{name:"loại",detail:"Thời hạn thanh toán."}}},CUMPRINC:{description:"Trả về lãi tích lũy cho khoản vay giữa hai kỳ thanh toán",abstract:"Trả về lãi tích lũy cho khoản vay giữa hai kỳ thanh toán",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cumprinc-%E5%87%BD%E6%95%B0-fcda5a29-0e85-406b-b7b0-4306ac693e72"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},startPeriod:{name:"kỳ đầu tiên",detail:"Kỳ đầu tiên trong tính toán này. Các kỳ thanh toán được đánh số bắt đầu từ 1."},endPeriod:{name:"kỳ cuối cùng",detail:"Kỳ cuối cùng trong tính toán này."},type:{name:"loại",detail:"Thời hạn thanh toán."}}},DB:{description:"Trả về giá trị khấu hao của tài sản cho một kỳ được xác định sử dụng phương pháp khấu hao số dư giảm dần cố định",abstract:"Trả về giá trị khấu hao của tài sản cho một kỳ được xác định sử dụng phương pháp khấu hao số dư giảm dần cố định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/db-%E5%87%BD%E6%95%B0-2067732b-d7f3-482a-b732-3edb72811830"}],functionParameter:{cost:{name:"trị giá",detail:"Chi phí của tài sản."},salvage:{name:"giá trị còn lại",detail:"Giá trị khi kết thúc khấu hao (đôi khi được gọi là giá trị thu hồi của tài sản)."},life:{name:"tuổi thọ sử dụng",detail:"Số thời gian khấu hao của một tài sản (đôi khi còn được gọi là thời gian sử dụng hữu ích của tài sản)."},period:{name:"kỳ",detail:"Khoảng thời gian mà bạn muốn tính khấu hao."},month:{name:"tháng",detail:"Số tháng trong năm đầu tiên. Nếu tháng bị bỏ qua, giá trị của nó được giả định là 12."}}},DDB:{description:"Trả về giá trị khấu hao của tài sản cho một kỳ được xác định sử dụng phương pháp khấu hao số dư giảm dần kép",abstract:"Trả về giá trị khấu hao của tài sản cho một kỳ được xác định sử dụng phương pháp khấu hao số dư giảm dần kép",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ddb-%E5%87%BD%E6%95%B0-4f40f492-79ab-4a7a-b7b5-08d08d1f861e"}],functionParameter:{cost:{name:"trị giá",detail:"Chi phí của tài sản."},salvage:{name:"giá trị còn lại",detail:"Giá trị khi kết thúc khấu hao (đôi khi được gọi là giá trị thu hồi của tài sản)."},life:{name:"tuổi thọ sử dụng",detail:"Số thời gian khấu hao của một tài sản (đôi khi còn được gọi là thời gian sử dụng hữu ích của tài sản)."},period:{name:"kỳ",detail:"Khoảng thời gian mà bạn muốn tính khấu hao."},factor:{name:"nhân tố",detail:"Tỷ lệ suy giảm số dư. Nếu bỏ qua yếu tố ảnh hưởng thì giả định là 2 (phương pháp số dư giảm dần kép)."}}},DISC:{description:"Trả về tỷ lệ chiết khấu của một trái phiếu",abstract:"Trả về tỷ lệ chiết khấu của một trái phiếu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/disc-%E5%87%BD%E6%95%B0-c6d9b13b-2551-4b22-b6ca-3bb2ab8a4177"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},pr:{name:"giá",detail:"Giá của một chứng khoán có thể bán được trên thị trường."},redemption:{name:"giá thanh lý",detail:"Giá trị thanh lý của chứng khoán có mệnh giá 100"},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},DOLLARDE:{description:"Trả về giá trị thập phân của một số lượng tiền dưới dạng số nguyên và phân số",abstract:"Trả về giá trị thập phân của một số lượng tiền dưới dạng số nguyên và phân số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dollarde-%E5%87%BD%E6%95%B0-34b88814-bda8-4bb1-92fc-e3c2fda9b897"}],functionParameter:{fractionalDollar:{name:"phân số",detail:"Một số được biểu thị dưới dạng phần nguyên và phần phân số, cách nhau bằng dấu thập phân."},fraction:{name:"mẫu số",detail:"Số nguyên dùng làm mẫu số của một phân số."}}},DOLLARFR:{description:"Trả về giá trị phân số của một số lượng tiền dưới dạng số nguyên và phân số",abstract:"Trả về giá trị phân số của một số lượng tiền dưới dạng số nguyên và phân số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dollarfr-%E5%87%BD%E6%95%B0-d964f8f1-c216-4e63-8b7d-15ec61515a8e"}],functionParameter:{decimalDollar:{name:"số thập phân",detail:"số thập phân."},fraction:{name:"mẫu số",detail:"Số nguyên dùng làm mẫu số của một phân số."}}},DURATION:{description:"Trả về thời gian của một trái phiếu trả lãi định kỳ",abstract:"Trả về thời gian của một trái phiếu trả lãi định kỳ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/duration-%E5%87%BD%E6%95%B0-7c5ae5c5-e22a-4c6e-bfc5-43c7b41f1974"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},coupon:{name:"lãi suất coupon hàng năm.",detail:"Lãi suất coupon hàng năm của một chứng khoán."},yld:{name:"tỷ suất lợi nhuận hàng năm.",detail:"Tỷ suất lợi nhuận hàng năm của một chứng khoán có thể bán được."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},EFFECT:{description:"Trả về lãi suất hiệu quả hàng năm",abstract:"Trả về lãi suất hiệu quả hàng năm",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/effect-%E5%87%BD%E6%95%B0-6a44539a-378e-4c42-9041-29b1d9d189a9"}],functionParameter:{nominalRate:{name:"lãi suất danh nghĩa",detail:"Lãi suất danh nghĩa."},npery:{name:"số kỳ",detail:"Số kỳ ghép lãi trong năm."}}},FV:{description:"Trả về giá trị tương lai của một khoản đầu tư dựa trên lãi suất không đổi",abstract:"Trả về giá trị tương lai của một khoản đầu tư dựa trên lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fv-%E5%87%BD%E6%95%B0-3517001d-d592-4af2-ab7d-b0a13a34a5ff"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pmt:{name:"số tiền",detail:"Số tiền phải trả trong mỗi kỳ không thay đổi trong suốt thời hạn niên kim."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},FVSCHEDULE:{description:"Trả về giá trị tương lai của một khoản gốc ban đầu sau khi áp dụng một chuỗi các lãi suất phức",abstract:"Trả về giá trị tương lai của một khoản gốc ban đầu sau khi áp dụng một chuỗi các lãi suất phức",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fvschedule-%E5%87%BD%E6%95%B0-e04bfa3a-4a37-430e-a132-4aafcacf2cd7"}],functionParameter:{principal:{name:"hiệu trưởng",detail:"giá trị hiện tại."},schedule:{name:"mảng lãi suất",detail:"Mảng lãi suất áp dụng."}}},INTRATE:{description:"Trả về lãi suất cho một khoản đầu tư hoàn toàn",abstract:"Trả về lãi suất cho một khoản đầu tư hoàn toàn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/intrate-%E5%87%BD%E6%95%B0-9d01bd51-7f48-41c5-b0d2-47d10409b27f"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},investment:{name:"số tiền đầu",detail:"Số tiền đầu tư vào chứng khoán có thể bán được."},redemption:{name:"giá thanh lý",detail:"Giá trị trao đổi của chứng khoán khi đáo hạn."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},IPMT:{description:"Trả về lãi suất cho một kỳ xác định của một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",abstract:"Trả về lãi suất cho một kỳ xác định của một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ipmt-%E5%87%BD%E6%95%B0-5c44f1d6-7dc0-4f1b-86ec-409cda192b15"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},per:{name:"kỳ",detail:"Số kỳ dùng để tính số tiền lãi phải nằm trong khoảng từ 1 đến nper."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},IRR:{description:"Trả về tỷ lệ hoàn vốn nội bộ cho một loạt các dòng tiền",abstract:"Trả về tỷ lệ hoàn vốn nội bộ cho một loạt các dòng tiền",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/irr-%E5%87%BD%E6%95%B0-649f8b21-3c9e-4e79-b7e7-df88b1ef7d5a"}],functionParameter:{values:{name:"dòng tiền",detail:`Tham chiếu đến một mảng hoặc ô chứa các số dùng để tính tỷ suất hoàn vốn nội bộ. +1.Các giá trị phải chứa ít nhất một giá trị dương và một giá trị âm để tính tỷ suất hoàn vốn nội bộ được trả về. +2.IRR sử dụng chuỗi giá trị để minh họa chuỗi dòng tiền. Đảm bảo nhập các giá trị chi phí và lợi ích theo thứ tự bạn yêu cầu. +3.Nếu mảng hoặc tham chiếu chứa văn bản, giá trị logic hoặc ô trống thì các giá trị này sẽ bị bỏ qua.`},guess:{name:"giá trị ước tính",detail:"Ước tính tính toán IRR của hàm."}}},ISPMT:{description:"Trả về số tiền lãi trả trong một kỳ đã xác định của một khoản đầu tư dựa trên lãi suất không đổi",abstract:"Trả về số tiền lãi trả trong một kỳ đã xác định của một khoản đầu tư dựa trên lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ispmt-%E5%87%BD%E6%95%B0-84a33b93-01c4-4149-b7a4-dbd9c3c6b1e3"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},per:{name:"kỳ",detail:"Số kỳ dùng để tính số tiền lãi phải nằm trong khoảng từ 1 đến nper."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."}}},MDURATION:{description:"Trả về thời hạn đã sửa đổi của Macauley cho một chứng khoán có mệnh giá giả định là 100 đô la",abstract:"Trả về thời hạn đã sửa đổi của Macauley cho một chứng khoán có mệnh giá giả định là 100 đô la",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mduration-%E5%87%BD%E6%95%B0-7c5ae5c5-e22a-4c6e-bfc5-43c7b41f1974"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},coupon:{name:"lãi suất coupon hàng năm.",detail:"Lãi suất coupon hàng năm của một chứng khoán."},yld:{name:"tỷ suất lợi nhuận hàng năm.",detail:"Tỷ suất lợi nhuận hàng năm của một chứng khoán có thể bán được."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu lãi hàng năm."},basis:{name:"điểm chuẩn",detail:"Cơ sở năm được dùng."}}},MIRR:{description:"Trả về tỷ lệ hoàn vốn nội bộ điều chỉnh cho các dòng tiền định kỳ, có tính đến chi phí đầu tư và lãi suất của khoản đầu tư",abstract:"Trả về tỷ lệ hoàn vốn nội bộ điều chỉnh cho các dòng tiền định kỳ, có tính đến chi phí đầu tư và lãi suất của khoản đầu tư",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mirr-%E5%87%BD%E6%95%B0-687e9c9e-8d77-4c5f-927f-2db18fc07e11"}],functionParameter:{values:{name:"dòng tiền",detail:`Một mảng hoặc tham chiếu đến một ô chứa số. Các giá trị này đại diện cho một loạt chi phí định kỳ (giá trị âm) và lợi ích (giá trị dương). +1.Các giá trị phải chứa ít nhất một giá trị dương và một giá trị âm để tính tỷ suất hoàn vốn nội bộ được sửa đổi. Ngược lại, MIRR trả về #DIV/0! . +2.Tuy nhiên, nếu mảng hoặc tham số tham chiếu chứa văn bản, giá trị logic hoặc ô trống thì các giá trị đó sẽ bị bỏ qua; tuy nhiên, các ô chứa giá trị 0 sẽ được tính.`},financeRate:{name:"Lãi suất tài trợ",detail:"Lãi suất trả cho các khoản tiền được sử dụng trong dòng tiền."},reinvestRate:{name:"tỷ suất sinh lợi tái đầu tư",detail:"Tỷ suất lợi nhuận của dòng tiền tái đầu tư."}}},NOMINAL:{description:"Trả về lãi suất danh nghĩa hàng năm",abstract:"Trả về lãi suất danh nghĩa hàng năm",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/nominal-%E5%87%BD%E6%95%B0-2f197f05-054d-41ef-8549-0f6fb4c497fa"}],functionParameter:{effectRate:{name:"lãi suất thực",detail:"lãi suất thực."},npery:{name:"số kỳ",detail:"Số kỳ ghép lãi trong năm."}}},NPER:{description:"Trả về số kỳ hạn cho một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",abstract:"Trả về số kỳ hạn cho một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/nper-%E5%87%BD%E6%95%B0-0e013941-c680-4d8f-9560-89fda87bc92b"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},pmt:{name:"số tiền",detail:"Số tiền phải trả trong mỗi kỳ không thay đổi trong suốt thời hạn niên kim."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},NPV:{description:"Trả về giá trị hiện tại ròng của một khoản đầu tư dựa trên một loạt các dòng tiền và tỷ lệ chiết khấu",abstract:"Trả về giá trị hiện tại ròng của một khoản đầu tư dựa trên một loạt các dòng tiền và tỷ lệ chiết khấu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/npv-%E5%87%BD%E6%95%B0-3f9ecada-b772-44d8-9b46-4d7ae0d6a156"}],functionParameter:{rate:{name:"tỷ lệ chiết khấu",detail:"Tỷ lệ chiết khấu trong một thời gian nhất định."},value1:{name:"dòng tiền 1",detail:"Đây là các tham số từ 1 đến 254 thể hiện chi phí và thu nhập."},value2:{name:"dòng tiền 2",detail:"Đây là các tham số từ 1 đến 254 thể hiện chi phí và thu nhập."}}},ODDFPRICE:{description:"Trả về giá của một trái phiếu có kỳ đầu ngắn hoặc dài",abstract:"Trả về giá của một trái phiếu có kỳ đầu ngắn hoặc dài",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/oddfprice-%E5%87%BD%E6%95%B0-8e1dc9c8-8c7e-48cd-bcf7-39b8a1a54c6f"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},firstCoupon:{name:"ngày phiếu lãi đầu tiên",detail:"Ngày phát hành phiếu giảm giá đầu tiên của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},yld:{name:"lợi suất hàng năm",detail:"Lợi suất hàng năm của chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},ODDFYIELD:{description:"Trả về lãi suất của một trái phiếu có kỳ đầu ngắn hoặc dài",abstract:"Trả về lãi suất của một trái phiếu có kỳ đầu ngắn hoặc dài",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/oddfyield-%E5%87%BD%E6%95%B0-97f0d152-3814-40f0-8c6a-e0cb5800e58c"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},firstCoupon:{name:"ngày phiếu lãi đầu tiên",detail:"Ngày phát hành phiếu giảm giá đầu tiên của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},pr:{name:"giá của",detail:"Giá của chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},ODDLPRICE:{description:"Trả về giá của một trái phiếu có kỳ cuối ngắn hoặc dài",abstract:"Trả về giá của một trái phiếu có kỳ cuối ngắn hoặc dài",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/oddlprice-%E5%87%BD%E6%95%B0-f0b3b76a-8e65-4b4d-8f6d-d493891a8d62"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},lastInterest:{name:"ngày thanh toán lãi cuối",detail:"Ngày thanh toán lãi cuối cùng của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},yld:{name:"lợi suất hàng năm",detail:"Lợi suất hàng năm của chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},ODDLYIELD:{description:"Trả về lãi suất của một trái phiếu có kỳ cuối ngắn hoặc dài",abstract:"Trả về lãi suất của một trái phiếu có kỳ cuối ngắn hoặc dài",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/oddlyield-%E5%87%BD%E6%95%B0-f1a101ed-f4f4-42e4-ae71-372dd6713d94"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},lastInterest:{name:"ngày thanh toán lãi cuối",detail:"Ngày thanh toán lãi cuối cùng của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},pr:{name:"giá của",detail:"Giá của chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},PDURATION:{description:"Trả về số kỳ hạn cần thiết để một khoản đầu tư đạt đến giá trị đã xác định.",abstract:"Trả về số kỳ hạn cần thiết để một khoản đầu tư đạt đến giá trị đã xác định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pduration-%E5%87%BD%E6%95%B0-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"lãi suất",detail:"lãi suất của mỗi kỳ hạn."},pv:{name:"giá trị hiện tại",detail:"giá trị hiện tại của khoản đầu tư."},fv:{name:"giá trị tương lai",detail:"giá trị tương lai được kỳ vọng của khoản đầu tư."}}},PMT:{description:"Trả về khoản thanh toán cho một khoản vay dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",abstract:"Trả về khoản thanh toán cho một khoản vay dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pmt-%E5%87%BD%E6%95%B0-0214da64-9d6e-4bcc-8567-92b403e0a164"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},PPMT:{description:"Trả về phần thanh toán gốc cho một kỳ đã xác định của một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",abstract:"Trả về phần thanh toán gốc cho một kỳ đã xác định của một khoản đầu tư dựa trên các khoản thanh toán định kỳ và đều đặn và lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ppmt-%E5%87%BD%E6%95%B0-3d37d3e1-0b04-4734-bb2d-15b9b76dbb18"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},per:{name:"kỳ",detail:"Số kỳ dùng để tính số tiền lãi phải nằm trong khoảng từ 1 đến nper."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},PRICE:{description:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu trả lãi định kỳ",abstract:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu trả lãi định kỳ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/price-%E5%87%BD%E6%95%B0-82b8176e-4817-4a76-b68f-7f83f1b3378b"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},yld:{name:"lợi suất hàng năm",detail:"Lợi suất hàng năm của chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},PRICEDISC:{description:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu chiết khấu",abstract:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu chiết khấu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pricedisc-%E5%87%BD%E6%95%B0-3369e2ea-9a16-49f1-85bb-41e42b02d6e5"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},discount:{name:"lãi suất chiết",detail:"Lãi suất chiết khấu đối với chứng khoán."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},PRICEMAT:{description:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu trả lãi khi đáo hạn",abstract:"Trả về giá trên mỗi $100 mệnh giá của một trái phiếu trả lãi khi đáo hạn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pricemat-%E5%87%BD%E6%95%B0-7f8e5d67-3124-4b8b-a1aa-8ae189e9345b"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},yld:{name:"lợi suất hàng năm",detail:"Lợi suất hàng năm của chứng khoán."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},PV:{description:"Trả về giá trị hiện tại của một khoản đầu tư dựa trên lãi suất không đổi",abstract:"Trả về giá trị hiện tại của một khoản đầu tư dựa trên lãi suất không đổi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pv-%E5%87%BD%E6%95%B0-28334a0e-2a78-433a-ab9c-9e441eb38e6e"}],functionParameter:{rate:{name:"lãi suất",detail:"Lãi suất theo từng thời kỳ."},nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pmt:{name:"số tiền",detail:"Số tiền phải trả trong mỗi kỳ không thay đổi trong suốt thời hạn niên kim."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."}}},RATE:{description:"Trả về lãi suất mỗi kỳ của một khoản đầu tư",abstract:"Trả về lãi suất mỗi kỳ của một khoản đầu tư",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rate-%E5%87%BD%E6%95%B0-fc8413b8-b76e-4022-b9d7-36d17d15d51b"}],functionParameter:{nper:{name:"tổng số kỳ",detail:"Tổng số kỳ thanh toán."},pmt:{name:"số tiền",detail:"Số tiền phải trả trong mỗi kỳ không thay đổi trong suốt thời hạn niên kim."},pv:{name:"giá trị hiện tại",detail:"Giá trị hiện tại."},fv:{name:"số dư tiền mặt",detail:"Giá trị tương lai hoặc số dư tiền mặt mong muốn sau khi thực hiện khoản thanh toán cuối cùng."},type:{name:"loại",detail:"Số 0 hoặc 1, dùng để xác định thời điểm thanh toán của mỗi kỳ là đầu hay cuối kỳ."},guess:{name:"giá trị đoán",detail:"lãi suất kỳ vọng."}}},RECEIVED:{description:"Trả về số tiền nhận được vào ngày đáo hạn cho một chứng khoán hoàn toàn đầu tư",abstract:"Trả về số tiền nhận được vào ngày đáo hạn cho một chứng khoán hoàn toàn đầu tư",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/received-%E5%87%BD%E6%95%B0-ea351090-829e-451b-bb56-bf8d3ef27a5d"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},investment:{name:"số tiền đầu tư",detail:"Số tiền đầu tư vào chứng khoán có thể bán được."},discount:{name:"lãi suất chiết",detail:"Lãi suất chiết khấu đối với chứng khoán."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},RRI:{description:"Trả về một lãi suất tương đương cho sự tăng trưởng của một khoản đầu tư.",abstract:"Trả về một lãi suất tương đương cho sự tăng trưởng của một khoản đầu tư.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rri-%E5%87%BD%E6%95%B0-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"số kỳ hạn của khoản đầu tư.",detail:"Nper là số kỳ hạn của khoản đầu tư."},pv:{name:"giá trị hiện tại",detail:"Pv là giá trị hiện tại của khoản đầu tư."},fv:{name:"giá trị tương lai",detail:"Fv là giá trị tương lai của khoản đầu tư."}}},SLN:{description:"Trả về khấu hao theo phương pháp đường thẳng của một tài sản cho một kỳ đã xác định",abstract:"Trả về khấu hao theo phương pháp đường thẳng của một tài sản cho một kỳ đã xác định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sln-%E5%87%BD%E6%95%B0-ae2bbdc0-4e48-4101-83b1-3e78bfa3084e"}],functionParameter:{cost:{name:"giá trị ban đầu của tài sản",detail:"Giá trị ban đầu của tài sản."},salvage:{name:"giá trị còn lại của tài sản",detail:"Giá trị khi kết thúc khấu hao (đôi khi được gọi là giá trị thu hồi của tài sản)."},life:{name:"thời gian sử dụng tài sản",detail:"Số thời gian khấu hao của một tài sản (đôi khi còn được gọi là thời gian sử dụng hữu ích của tài sản)."}}},SYD:{description:"Trả về khấu hao theo phương pháp tổng các số dư của một tài sản cho một kỳ đã xác định",abstract:"Trả về khấu hao theo phương pháp tổng các số dư của một tài sản cho một kỳ đã xác định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/syd-%E5%87%BD%E6%95%B0-c276a91d-8f1d-45b2-b07d-8d2707e969d0"}],functionParameter:{cost:{name:"giá trị ban đầu của tài sản",detail:"Giá trị ban đầu của tài sản."},salvage:{name:"giá trị còn lại của tài sản",detail:"Giá trị khi kết thúc khấu hao (đôi khi được gọi là giá trị thu hồi của tài sản)."},life:{name:"thời gian sử dụng tài sản",detail:"Số thời gian khấu hao của một tài sản (đôi khi còn được gọi là thời gian sử dụng hữu ích của tài sản)."},per:{name:"thời kỳ",detail:"Chu kỳ và phải sử dụng cùng đơn vị với cuộc sống."}}},TBILLEQ:{description:"Trả về lãi suất tương đương của một chứng khoán kho bạc",abstract:"Trả về lãi suất tương đương của một chứng khoán kho bạc",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tbilleq-%E5%87%BD%E6%95%B0-8e9eb7a4-1dbe-4d4a-a932-84aeba2b9c72"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán trái phiếu kho bạc."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của trái phiếu kho bạc."},discount:{name:"lãi suất chiết",detail:"Lãi suất chiết khấu của trái phiếu kho bạc."}}},TBILLPRICE:{description:"Trả về giá của một chứng khoán kho bạc",abstract:"Trả về giá của một chứng khoán kho bạc",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tbillprice-%E5%87%BD%E6%95%B0-30f495e2-b69f-4f67-8372-9cfc9bfc1b3d"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán trái phiếu kho bạc."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của trái phiếu kho bạc."},discount:{name:"lãi suất chiết",detail:"Lãi suất chiết khấu của trái phiếu kho bạc."}}},TBILLYIELD:{description:"Trả về lãi suất của một chứng khoán kho bạc",abstract:"Trả về lãi suất của một chứng khoán kho bạc",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tbillyield-%E5%87%BD%E6%95%B0-4a9b30c3-ff25-4114-8e37-86c605208f99"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán trái phiếu kho bạc."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của trái phiếu kho bạc."},pr:{name:"giá",detail:"Giá trái phiếu kho bạc tính theo mệnh giá 100 đô la."}}},VDB:{description:"Trả về khấu hao của một tài sản cho một kỳ đã xác định bằng cách sử dụng phương pháp số dư giảm dần kép hoặc bất kỳ phương pháp nào mà bạn xác định",abstract:"Trả về khấu hao của một tài sản cho một kỳ đã xác định bằng cách sử dụng phương pháp số dư giảm dần kép hoặc bất kỳ phương pháp nào mà bạn xác định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/vdb-%E5%87%BD%E6%95%B0-0ba3b999-b7e7-4b48-8a96-7c47640a7d28"}],functionParameter:{cost:{name:"trị giá",detail:"Chi phí của tài sản."},salvage:{name:"giá trị còn lại",detail:"Giá trị khi kết thúc khấu hao (đôi khi được gọi là giá trị thu hồi của tài sản)."},life:{name:"tuổi thọ sử dụng",detail:"Số thời gian khấu hao của một tài sản (đôi khi còn được gọi là thời gian sử dụng hữu ích của tài sản)."},startPeriod:{name:"kỳ đầu tiên",detail:"Kỳ đầu tiên mà bạn muốn tính khấu hao."},endPeriod:{name:"kỳ kết thúc",detail:"Kỳ kết thúc mà bạn muốn tính khấu hao."},factor:{name:"nhân tố",detail:"Tỷ lệ suy giảm số dư. Nếu bỏ qua yếu tố ảnh hưởng thì giả định là 2 (phương pháp số dư giảm dần kép)."},noSwitch:{name:"không chuyển đổi",detail:"Giá trị logic chỉ định liệu có nên chuyển sang khấu hao theo đường thẳng hay không khi mức khấu hao lớn hơn phép tính số dư giảm dần."}}},XIRR:{description:"Trả về tỷ lệ hoàn vốn nội bộ cho một loạt các dòng tiền đã xác định",abstract:"Trả về tỷ lệ hoàn vốn nội bộ cho một loạt các dòng tiền đã xác định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/xirr-%E5%87%BD%E6%95%B0-f5a995a9-d4a4-4d82-8b9e-1bbad6677a3b"}],functionParameter:{values:{name:"dòng tiền",detail:"Một chuỗi các dòng tiền tương ứng với thời điểm thanh toán theo ngày. Khoản trả trước là tùy chọn và liên quan đến chi phí hoặc khoản thanh toán khi bắt đầu đầu tư. Nếu giá trị đầu tiên là chi phí hoặc khoản thanh toán thì giá trị đó phải âm. Tất cả các khoản thanh toán tiếp theo được chiết khấu trên cơ sở 365 ngày/năm. Chuỗi giá trị phải chứa ít nhất một giá trị dương và một giá trị âm."},dates:{name:"bảng ngày tháng",detail:"Lịch trình ngày thanh toán tương ứng với các khoản thanh toán dòng tiền. Ngày tháng có thể xuất hiện theo bất kỳ thứ tự nào."},guess:{name:"giá trị ước tính",detail:"Ước tính kết quả của phép tính hàm XIRR."}}},XNPV:{description:"Trả về giá trị hiện tại ròng của một khoản đầu tư cho một loạt các dòng tiền không đều",abstract:"Trả về giá trị hiện tại ròng của một khoản đầu tư cho một loạt các dòng tiền không đều",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/xnpv-%E5%87%BD%E6%95%B0-fb947d21-98a2-4a59-9f39-88323c2c7087"}],functionParameter:{rate:{name:"tỷ lệ chiết khấu",detail:"Tỷ lệ chiết khấu áp dụng cho dòng tiền."},values:{name:"dòng tiền",detail:"Một chuỗi các dòng tiền tương ứng với thời điểm thanh toán theo ngày. Khoản trả trước là tùy chọn và liên quan đến chi phí hoặc khoản thanh toán khi bắt đầu đầu tư. Nếu giá trị đầu tiên là chi phí hoặc khoản thanh toán thì giá trị đó phải âm. Tất cả các khoản thanh toán tiếp theo được chiết khấu trên cơ sở 365 ngày/năm. Chuỗi giá trị phải chứa ít nhất một giá trị dương và một giá trị âm."},dates:{name:"bảng ngày tháng",detail:"Lịch trình ngày thanh toán tương ứng với các khoản thanh toán dòng tiền. Ngày tháng có thể xuất hiện theo bất kỳ thứ tự nào."}}},YIELD:{description:"Trả về lãi suất trên mỗi $100 mệnh giá của một trái phiếu trả lãi định kỳ",abstract:"Trả về lãi suất trên mỗi $100 mệnh giá của một trái phiếu trả lãi định kỳ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/yield-%E5%87%BD%E6%95%B0-809cabff-6db1-4a56-99db-f9540465b3c7"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},pr:{name:"giá",detail:"Giá chứng khoán tính theo mệnh giá 100 đô la."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},frequency:{name:"tần số",detail:"Số lần thanh toán phiếu giảm giá mỗi năm. Đối với các khoản thanh toán hàng năm, tần suất = 1; đối với các khoản thanh toán nửa năm, tần suất = 2; đối với các khoản thanh toán hàng quý, tần suất = 4."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},YIELDDISC:{description:"Trả về lãi suất hàng năm của một trái phiếu chiết khấu",abstract:"Trả về lãi suất hàng năm của một trái phiếu chiết khấu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/yielddisc-%E5%87%BD%E6%95%B0-0d1fd9d0-7623-4f0a-bc24-fcfafa7b7e9f"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},pr:{name:"giá",detail:"Giá chứng khoán tính theo mệnh giá 100 đô la."},redemption:{name:"giá trị chuộc lại",detail:"Giá trị hoàn lại của chứng khoán trên mỗi mệnh giá 100 đô la."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}},YIELDMAT:{description:"Trả về lãi suất hàng năm của một trái phiếu trả lãi khi đáo hạn",abstract:"Trả về lãi suất hàng năm của một trái phiếu trả lãi khi đáo hạn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/yieldmat-%E5%87%BD%E6%95%B0-0b05b481-7a08-4e65-b38d-c8d4d57f03a8"}],functionParameter:{settlement:{name:"ngày thanh toán",detail:"Ngày thanh toán chứng khoán."},maturity:{name:"ngày đáo hạn",detail:"Ngày đáo hạn của chứng khoán."},issue:{name:"ngày phát hành",detail:"Ngày phát hành chứng khoán."},rate:{name:"lãi suất",detail:"Lãi suất chứng khoán."},pr:{name:"giá",detail:"Giá chứng khoán tính theo mệnh giá 100 đô la."},basis:{name:"cơ sở",detail:"Loại cơ sở tính ngày cần sử dụng."}}}},...{DATE:{description:"Kết hợp ba giá trị riêng biệt thành một ngày.",abstract:"Trả về số sê-ri của ngày cụ thể",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/date-%E5%87%BD%E6%95%B0-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"Năm",detail:"có thể chứa từ 1 đến 4 chữ số. Excel giải thích tham số year dựa trên hệ thống ngày được máy tính sử dụng. Theo mặc định, Univer sử dụng hệ thống ngày 1900, nghĩa là ngày đầu tiên là ngày 1 tháng 1 năm 1900."},month:{name:"Tháng",detail:"một số nguyên dương hoặc số nguyên âm, đại diện cho các tháng từ tháng 1 đến tháng 12 trong một năm."},day:{name:"Ngày",detail:"một số nguyên dương hoặc số nguyên âm, đại diện cho các ngày từ ngày 1 đến ngày 31 trong một tháng."}}},DATEDIF:{description:"Tính số ngày, tháng hoặc năm giữa hai ngày. Hàm này rất hữu ích trong các công thức tính tuổi.",abstract:"Tính số ngày, tháng hoặc năm giữa hai ngày. Hàm này rất hữu ích trong các công thức tính tuổi.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/datedif-%E5%87%BD%E6%95%B0-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"ngày bắt đầu",detail:"Ngày đại diện cho ngày đầu tiên hoặc ngày bắt đầu của một khoảng thời gian đã cho."},endDate:{name:"ngày kết thúc",detail:"Ngày đại diện cho ngày cuối cùng hoặc ngày kết thúc khoảng thời gian."},method:{name:"Loại thông tin",detail:"Kiểu thông tin mà bạn muốn được trả về."}}},DATEVALUE:{description:"Chuyển đổi ngày ở dạng văn bản thành số sê-ri.",abstract:"Chuyển đổi ngày ở dạng văn bản thành số sê-ri",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/datevalue-%E5%87%BD%E6%95%B0-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"Văn bản ngày",detail:`đại diện cho ngày ở định dạng Excel, hoặc tham chiếu đến ô chứa văn bản đại diện cho ngày ở định dạng Excel. Ví dụ, "1/30/2008" hoặc "30-Jan-2008" là văn bản trong dấu ngoặc kép đại diện cho ngày. +Sử dụng hệ thống ngày mặc định của Microsoft Excel for Windows, tham số date_text phải đại diện cho ngày từ 1 tháng 1 năm 1900 đến 31 tháng 12 năm 9999. Hàm DATEVALUE sẽ trả về lỗi #VALUE! nếu giá trị của tham số date_text nằm ngoài phạm vi này. +Nếu bỏ qua phần năm trong tham số date_text, hàm DATEVALUE sẽ sử dụng năm hiện tại của đồng hồ tích hợp của máy tính. Thông tin thời gian trong tham số date_text sẽ bị bỏ qua.`}}},DAY:{description:"Trả về ngày của một ngày cụ thể được biểu diễn bằng số sê-ri. Ngày là một số nguyên từ 1 đến 31.",abstract:"Chuyển đổi số sê-ri thành ngày của tháng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/day-%E5%87%BD%E6%95%B0-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},DAYS:{description:"Trả về số ngày giữa hai ngày",abstract:"Trả về số ngày giữa hai ngày",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/days-%E5%87%BD%E6%95%B0-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"ngày kết thúc",detail:"Hai ngày mà bạn muốn biết số ngày giữa hai ngày đó."},startDate:{name:"ngày bắt đầu",detail:"Hai ngày mà bạn muốn biết số ngày giữa hai ngày đó."}}},DAYS360:{description:"Tính số ngày giữa hai ngày dựa trên năm 360 ngày",abstract:"Tính số ngày giữa hai ngày dựa trên năm 360 ngày",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/days360-%E5%87%BD%E6%95%B0-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"ngày bắt đầu",detail:"Hai ngày mà bạn muốn biết số ngày giữa hai ngày đó."},endDate:{name:"ngày kết thúc",detail:"Hai ngày mà bạn muốn biết số ngày giữa hai ngày đó."},method:{name:"phương pháp",detail:"Giá trị lô-gic xác định sẽ dùng phương pháp của Hoa Kỳ hay của châu Âu trong tính toán."}}},EDATE:{description:"Trả về số sê-ri đại diện cho ngày cách một số tháng chỉ định trước hoặc sau một ngày cụ thể (start_date). Sử dụng hàm EDATE để tính ngày đến hạn hoặc ngày hết hạn.",abstract:"Trả về số sê-ri của ngày cách start_date một số tháng chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/edate-%E5%87%BD%E6%95%B0-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"Ngày bắt đầu",detail:"Ngày đại diện cho ngày bắt đầu. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."},months:{name:"Số tháng",detail:"Số tháng trước hoặc sau start_date. Giá trị dương sẽ trả về ngày trong tương lai; giá trị âm sẽ trả về ngày trong quá khứ."}}},EOMONTH:{description:"Trả về số sê-ri của ngày cuối cùng của tháng trước hoặc sau một số tháng chỉ định",abstract:"Trả về số sê-ri của ngày cuối cùng của tháng trước hoặc sau một số tháng chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/eomonth-%E5%87%BD%E6%95%B0-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"Ngày bắt đầu",detail:"Ngày biểu thị ngày bắt đầu."},months:{name:"Số tháng",detail:"Số tháng trước hoặc sau start_date."}}},EPOCHTODATE:{description:"Chuyển đổi dấu thời gian bắt đầu của hệ thống Unix ở dạng giây, mili giây hoặc micrô giây thành dạng ngày giờ theo Giờ phối hợp quốc tế (UTC).",abstract:"Chuyển đổi dấu thời gian bắt đầu của hệ thống Unix ở dạng giây, mili giây hoặc micrô giây thành dạng ngày giờ theo Giờ phối hợp quốc tế (UTC).",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/13193461?hl=vi&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"dấu thời gian",detail:"Dấu thời gian bắt đầu của hệ thống Unix ở dạng giây, mili giây hoặc micrô giây."},unit:{name:"đơn vị thời gian",detail:`Đơn vị thời gian mà dấu thời gian thể hiện. 1 theo mặc định: +1 cho biết đơn vị thời gian là giây. +2 cho biết đơn vị thời gian là mili giây. +3 cho biết đơn vị thời gian là micrô giây.`}}},HOUR:{description:"Chuyển đổi số sê-ri thành giờ",abstract:"Chuyển đổi số sê-ri thành giờ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/hour-%E5%87%BD%E6%95%B0-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},ISOWEEKNUM:{description:"Trả về số tuần ISO của năm đối với ngày đã cho.",abstract:"Trả về số tuần ISO của năm đối với ngày đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/isoweeknum-%E5%87%BD%E6%95%B0-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"Ngày",detail:"Ngày là mã ngày-giờ được Excel dùng để tính toán ngày và giờ."}}},MINUTE:{description:"Chuyển đổi số sê-ri thành phút",abstract:"Chuyển đổi số sê-ri thành phút",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/minute-%E5%87%BD%E6%95%B0-9a3db35c-256c-45da-86bf-d82cde6d4fcb"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},MONTH:{description:"Trả về tháng của một ngày cụ thể được biểu diễn bằng số sê-ri. Tháng là một số nguyên từ 1 (tháng 1) đến 12 (tháng 12).",abstract:"Chuyển đổi số sê-ri thành tháng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/month-%E5%87%BD%E6%95%B0-0df62f6e-672d-4c78-9a70-a764de937b5e"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},NETWORKDAYS:{description:"Trả về số ngày làm việc giữa hai ngày. Ngày làm việc loại trừ cuối tuần và bất kỳ ngày nào được xác định là ngày nghỉ.",abstract:"Trả về số ngày làm việc giữa hai ngày",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/networkdays-%E5%87%BD%E6%95%B0-c48cafe0-1b60-4dd7-afac-81521ff6f53b"}],functionParameter:{startDate:{name:"ngày bắt đầu",detail:"Một ngày đại diện cho ngày bắt đầu."},endDate:{name:"ngày kết thúc",detail:"Ngày đại diện cho ngày chấm dứt."},holidays:{name:"ngày lễ",detail:"Một phạm vi tùy chọn gồm một hoặc nhiều ngày không có trong lịch làm việc."}}},NETWORKDAYS_INTL:{description:"Trả về số ngày làm việc trọn vẹn ở giữa hai ngày bằng cách dùng tham số để cho biết có bao nhiêu ngày cuối tuần và đó là những ngày nào.",abstract:"Trả về số ngày làm việc trọn vẹn ở giữa hai ngày bằng cách dùng tham số để cho biết có bao nhiêu ngày cuối tuần và đó là những ngày nào.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/networkdays-intl-%E5%87%BD%E6%95%B0-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"ngày bắt đầu",detail:"Một ngày đại diện cho ngày bắt đầu."},endDate:{name:"ngày kết thúc",detail:"Ngày đại diện cho ngày chấm dứt."},weekend:{name:"ngày cuối tuần",detail:"Ngày cuối tuần có thể là số ngày cuối tuần hoặc một chuỗi cho biết ngày cuối tuần xảy ra khi nào."},holidays:{name:"ngày lễ",detail:"Một phạm vi tùy chọn gồm một hoặc nhiều ngày không có trong lịch làm việc."}}},NOW:{description:"Trả về số sê-ri của ngày và thời gian hiện tại.",abstract:"Trả về số sê-ri của ngày và thời gian hiện tại.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/now-%E5%87%BD%E6%95%B0-3337fd29-145a-4347-b2e6-20c904739c46"}],functionParameter:{}},SECOND:{description:"Chuyển đổi số sê-ri thành giây",abstract:"Chuyển đổi số sê-ri thành giây",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/second-%E5%87%BD%E6%95%B0-44921a95-0b32-4f8b-8317-82ef1d22bb84"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},TIME:{description:"Trả về số thập phân của một thời gian cụ thể. Nếu định dạng ô là General trước khi nhập hàm, kết quả sẽ được định dạng dưới dạng ngày tháng.",abstract:"Trả về số thập phân của một thời gian cụ thể",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/time-%E5%87%BD%E6%95%B0-3607e6cc-0f46-4c3b-8357-40fe314d7b3c"}],functionParameter:{hour:{name:"Giờ",detail:"Một số từ 0 (không) đến 32767 biểu thị giờ. Bất kỳ giá trị nào lớn hơn 23 đều được chia cho 24 và phần còn lại được sử dụng làm giá trị giờ. Ví dụ: TIME(27,0,0) = TIME(3,0,0) = 0,125 hoặc 3:00 AM."},minute:{name:"phút",detail:"Một số từ 0 đến 32767 biểu thị số phút. Mọi giá trị lớn hơn 59 sẽ được chuyển đổi thành giờ và phút. Ví dụ: TIME(0,750,0) = TIME(12,30,0) = 0,520833 hoặc 12:30 PM."},second:{name:"giây",detail:"Một số từ 0 đến 32767 biểu thị giây. Mọi giá trị lớn hơn 59 sẽ được chuyển đổi thành giờ, phút và giây. Ví dụ: TIME(0,0,2000) = TIME(0,33,22) = 0,023148 ​​​​hoặc 12:33:20 AM."}}},TIMEVALUE:{description:"Chuyển đổi một thời gian ở dạng văn bản thành số thập phân đại diện cho thời gian đó trong Excel.",abstract:"Chuyển đổi một thời gian ở dạng văn bản thành số thập phân đại diện cho thời gian đó trong Excel",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/timevalue-%E5%87%BD%E6%95%B0-d7c29d57-399f-4a11-a7d8-379e01c7130d"}],functionParameter:{timeText:{name:"Văn bản thời gian",detail:'Chuỗi văn bản đại diện cho một thời gian trong định dạng thời gian Excel, ví dụ, "6:45 PM" và "18:45" là văn bản chuỗi trong dấu ngoặc kép đại diện cho thời gian.'}}},TO_DATE:{description:"Chuyển đổi một số cho sẵn thành giá trị ngày (theo lịch).",abstract:"Chuyển đổi một số cho sẵn thành giá trị ngày (theo lịch).",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3094239?hl=vi&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"giá trị",detail:"Đối số hoặc tham chiếu đến một ô sẽ được chuyển đổi thành ngày tháng."}}},TODAY:{description:"Trả về ngày hiện tại. Hàm này rất hữu ích khi cần sử dụng ngày hiện tại trong các công thức hoặc để tính toán khoảng thời gian liên quan đến ngày hiện tại.",abstract:"Trả về ngày hiện tại",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/today-%E5%87%BD%E6%95%B0-49540925-3611-41c5-90e3-f1b6e8e5f029"}],functionParameter:{}},WEEKDAY:{description:"Chuyển đổi số sê-ri thành ngày trong tuần",abstract:"Chuyển đổi số sê-ri thành ngày trong tuần",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/weekday-%E5%87%BD%E6%95%B0-f3651330-3a06-4892-9d89-12cc7dadaabd"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Số sê-ri đại diện cho ngày trong ngày cố gắng tra cứu."},returnType:{name:"Kiểu giá trị trả về",detail:"Một số được sử dụng để xác định loại giá trị trả về."}}},WEEKNUM:{description:"Trả về số tuần của một ngày cụ thể trong một năm",abstract:"Trả về số tuần của một ngày cụ thể trong một năm",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/weeknum-%E5%87%BD%E6%95%B0-2fdd388d-8f4d-4208-95de-8f2ad40187af"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Đại diện cho ngày trong tuần."},returnType:{name:"Kiểu giá trị trả về",detail:"Một con số xác định ngày bắt đầu trong tuần. Giá trị mặc định là 1."}}},WORKDAY:{description:"Trả về số sê-ri của ngày trước hoặc sau một số ngày làm việc đã chỉ định. Ngày làm việc không bao gồm ngày cuối tuần và bất kỳ ngày nào được xác định là ngày nghỉ.",abstract:"Trả về số sê-ri của ngày trước hoặc sau một số ngày làm việc đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/workday-%E5%87%BD%E6%95%B0-5570eab1-e9e5-49d0-9650-efda88d7d0b8"}],functionParameter:{startDate:{name:"Ngày bắt đầu",detail:"Ngày đại diện cho ngày bắt đầu. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."},days:{name:"Số ngày",detail:"Số ngày làm việc trước hoặc sau start_date. Giá trị dương sẽ trả về ngày trong tương lai; giá trị âm sẽ trả về ngày trong quá khứ."},holidays:{name:"Ngày nghỉ",detail:"Danh sách tùy chọn một hoặc nhiều ngày làm việc cần loại trừ khỏi lịch làm việc."}}},WORKDAY_INTL:{description:"返回日期在指定的工作日天数之前或之后的序列号(使用参数指明周末有几天并指明是哪几天)",abstract:"返回日期在指定的工作日天数之前或之后的序列号(使用参数指明周末有几天并指明是哪几天)",links:[{title:"教学",url:"https://support.microsoft.com/vi-vn/office/workday-intl-%E5%87%BD%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"Ngày bắt đầu",detail:"Một ngày đại diện cho ngày bắt đầu."},days:{name:"Số ngày",detail:"Số ngày làm việc trước hoặc sau start_date. Giá trị dương sẽ trả về ngày trong tương lai; giá trị âm sẽ trả về ngày trong quá khứ."},weekend:{name:"ngày cuối tuần",detail:"Ngày cuối tuần có thể là số ngày cuối tuần hoặc một chuỗi cho biết ngày cuối tuần xảy ra khi nào."},holidays:{name:"ngày lễ",detail:"Một phạm vi tùy chọn gồm một hoặc nhiều ngày không có trong lịch làm việc."}}},YEAR:{description:"Chuyển đổi số sê-ri thành năm",abstract:"Chuyển đổi số sê-ri thành năm",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/year-%E5%87%BD%E6%95%B0-371d2722-0a8d-48de-8b7c-9bd6b289b93c"}],functionParameter:{serialNumber:{name:"Số sê-ri ngày",detail:"Ngày cần tìm. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."}}},YEARFRAC:{description:"Trả về phân số của năm đại diện cho số ngày trọn vẹn giữa start_date và end_date. Ví dụ, bạn có thể sử dụng hàm YEARFRAC để xác định tỷ lệ lợi nhuận hàng năm nếu bạn biết số ngày giữa hai ngày hoặc nếu bạn cần tính tỷ lệ hoàn trả cho một khoản vay.",abstract:"Trả về phân số của năm đại diện cho số ngày trọn vẹn giữa start_date và end_date",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/yearfrac-%E5%87%BD%E6%95%B0-7b2a6219-4830-40b8-b8e3-9b7c0b6ab0d0"}],functionParameter:{startDate:{name:"Ngày bắt đầu",detail:"Ngày đại diện cho ngày bắt đầu. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác. Ví dụ, sử dụng hàm DATE(2008,5,23) để nhập ngày 23 tháng 5 năm 2008."},endDate:{name:"Ngày kết thúc",detail:"Ngày đại diện cho ngày kết thúc. Nên sử dụng hàm DATE để nhập ngày hoặc nhập ngày dưới dạng kết quả của các công thức hoặc hàm khác."},basis:{name:"Cơ sở",detail:"Cơ sở hoặc phương pháp tính số ngày cần sử dụng."}}}},...{ABS:{description:"Trả về giá trị tuyệt đối của một số. Giá trị tuyệt đối của một số là số đó không có dấu.",abstract:"Trả về giá trị tuyệt đối của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/abs-%E5%87%BD%E6%95%B0-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"số",detail:"Số thực mà bạn muốn tìm giá trị tuyệt đối của nó."}}},ACOS:{description:"Trả về arccosin, hay cosin nghịch đảo, của một số. Arccosin là góc mà cosin của nó là số. Góc được trả về được tính bằng radian trong phạm vi từ 0 (không) đến pi.",abstract:"Trả về cung cosin của một số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/acos-%E5%87%BD%E6%95%B0-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"số",detail:"Cosin của góc mà bạn muốn và phải từ -1 đến 1."}}},ACOSH:{description:"Trả về cosin hyperbolic nghịch đảo của một số. Số đó phải lớn hơn hoặc bằng 1. Cosin hyperbolic nghịch đảo là giá trị mà cosin hyperbolic của nó là số, vì vậy ACOSH(COSH(number)) bằng số.",abstract:"Trả về cosin hyperbolic nghịch đảo của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/acosh-%E5%87%BD%E6%95%B0-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào lớn hơn hoặc bằng 1."}}},ACOT:{description:"Trả về giá trị chính của arccotang hoặc nghịch đảo cotang của một số.",abstract:"Trả về cotang nghịch đảo của một số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/acot-%E5%87%BD%E6%95%B0-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"số",detail:"Số là cotang của góc mà bạn muốn. Số này phải là số thực."}}},ACOTH:{description:"Trả về nghịch đảo cotang hyperbol của một số.",abstract:"Trả về nghịch đảo cotang hyperbol của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/acoth-%E5%87%BD%E6%95%B0-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"số",detail:"Giá trị tuyệt đối của Số phải lớn hơn 1."}}},ARABIC:{description:"将罗马数字转换为阿拉伯数字",abstract:"将罗马数字转换为阿拉伯数字",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/arabic-%E5%87%BD%E6%95%B0-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"bản văn",detail:'Một chuỗi nằm trong dấu ngoặc kép, một chuỗi trống ("") hoặc một tham chiếu đến ô có chứa văn bản.'}}},ASIN:{description:"Trả về arcsin, hayine nghịch đảo của một số.",abstract:"Trả về arcsin, hayine nghịch đảo của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/asin-%E5%87%BD%E6%95%B0-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"số",detail:"Sin của góc mà bạn muốn và phải từ -1 đến 1."}}},ASINH:{description:"Trả về sin hyperbolic nghịch đảo của một số.",abstract:"Trả về sin hyperbolic nghịch đảo của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/asinh-%E5%87%BD%E6%95%B0-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào."}}},ATAN:{description:"Trả về arctang, hay tang nghịch đảo của một số.",abstract:"Trả về arctang, hay tang nghịch đảo của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/atan-%E5%87%BD%E6%95%B0-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"số",detail:"Tang của góc mà bạn muốn."}}},ATAN2:{description:"Trả về arctang, hay tang nghịch đảo của tọa độ x và tọa độ y đã xác định.",abstract:"Trả về arctang, hay tang nghịch đảo của tọa độ x và tọa độ y đã xác định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/atan2-%E5%87%BD%E6%95%B0-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"Tọa độ x",detail:"Tọa độ x của điểm."},yNum:{name:"Tọa độ y",detail:"Tọa độ y của điểm."}}},ATANH:{description:"Trả về tang hyperbolic nghịch đảo của một số.",abstract:"Trả về tang hyperbolic nghịch đảo của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/atanh-%E5%87%BD%E6%95%B0-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào từ 1 đến -1."}}},BASE:{description:"Chuyển một số sang dạng trình bày văn bản với cơ số cho trước.",abstract:"Chuyển một số sang dạng trình bày văn bản với cơ số cho trước.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/base-%E5%87%BD%E6%95%B0-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn chuyển đổi. Phải là số nguyên lớn hơn hoặc bằng 0 và nhỏ hơn 2^53."},radix:{name:"Cơ số",detail:"Cơ số mà bạn muốn chuyển số trên thành. Phải là số nguyên lớn hơn hoặc bằng 2 và nhỏ hơn hoặc bằng 36."},minLength:{name:"chiều dài tối thiểu",detail:"Độ dài tối thiểu của chuỗi trả về. Phải là số nguyên lớn hơn hoặc bằng 0."}}},CEILING:{description:"Trả về số được làm tròn lên, xa số không, đến bội số có nghĩa gần nhất.",abstract:"Trả về số được làm tròn lên, xa số không, đến bội số có nghĩa gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ceiling-%E5%87%BD%E6%95%B0-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"số",detail:"Giá trị mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."}}},CEILING_MATH:{description:"Làm tròn số lên số nguyên gần nhất hoặc bội số có nghĩa gần nhất.",abstract:"Làm tròn số lên số nguyên gần nhất hoặc bội số có nghĩa gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ceiling-math-%E5%87%BD%E6%95%B0-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"số",detail:"Giá trị mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."},mode:{name:"phương thức",detail:"Đối với số âm, kiểm soát xem Số có được làm tròn tới hoặc khác 0 hay không."}}},CEILING_PRECISE:{description:"Trả về một số được làm tròn lên tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất. Bất chấp dấu của số, số sẽ được làm tròn lên.",abstract:"Trả về một số được làm tròn lên tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ceiling-precise-%E5%87%BD%E6%95%B0-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"số",detail:"Giá trị mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."}}},COMBIN:{description:"Trả về số tổ hợp cho số mục nhất định.",abstract:"Trả về số tổ hợp cho số mục nhất định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/combin-%E5%87%BD%E6%95%B0-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"tổng cộng",detail:"Số hạng mục."},numberChosen:{name:"số lượng mẫu",detail:"Số hạng mục trong mỗi tổ hợp."}}},COMBINA:{description:"Trả về số lần kết hợp (có kèm những lần lặp lại) đối với số lượng mục cho trước.",abstract:"Trả về số lần kết hợp (có kèm những lần lặp lại) đối với số lượng mục cho trước.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/combina-%E5%87%BD%E6%95%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"tổng cộng",detail:"Số hạng mục."},numberChosen:{name:"số lượng mẫu",detail:"Số hạng mục trong mỗi tổ hợp."}}},COS:{description:"Trả về cosin của góc đã cho.",abstract:"Trả về cosin của góc đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cos-%E5%87%BD%E6%95%B0-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"số",detail:"Góc tính bằng radian mà bạn muốn tính cosin cho nó."}}},COSH:{description:"Trả về cosin hyperbolic của một số.",abstract:"Trả về cosin hyperbolic của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cosh-%E5%87%BD%E6%95%B0-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào mà bạn muốn tìm cosin hyperbolic cho số đó."}}},COT:{description:"Trả về giá trị cotang của góc được đo bằng radian.",abstract:"Trả về giá trị cotang của góc được đo bằng radian.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cot-%E5%87%BD%E6%95%B0-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"số",detail:"Góc được đo bằng radian mà bạn muốn tính cotang."}}},COTH:{description:"Trả về cotang hyperbolic của một góc hyperbolic.",abstract:"Trả về cotang hyperbolic của một góc hyperbolic.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/coth-%E5%87%BD%E6%95%B0-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"số",detail:"Muốn tìm số thực bất kỳ là cotang hyperbol."}}},CSC:{description:"Trả về cosec của một góc được tính bằng radian.",abstract:"Trả về cosec của một góc được tính bằng radian.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/csc-%E5%87%BD%E6%95%B0-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"số",detail:"Tôi muốn tìm góc cosecant, được biểu thị bằng radian."}}},CSCH:{description:"Trả về cosec hyperbolic của một góc được tính bằng radian.",abstract:"Trả về cosec hyperbolic của một góc được tính bằng radian.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/csch-%E5%87%BD%E6%95%B0-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"số",detail:"Góc mà bạn muốn tìm giá trị cosec hyperbol, được biểu thị bằng radian."}}},DECIMAL:{description:"Chuyển đổi dạng biểu thị số bằng văn bản theo một cơ số đã cho thành một số thập phân.",abstract:"Chuyển đổi dạng biểu thị số bằng văn bản theo một cơ số đã cho thành một số thập phân.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/decimal-%E5%87%BD%E6%95%B0-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"sợi dây",detail:"Độ dài chuỗi phải nhỏ hơn hoặc bằng 255 ký tự."},radix:{name:"Cơ số",detail:"Cơ sở để chuyển đổi số thành. Phải là số nguyên lớn hơn hoặc bằng 2 và nhỏ hơn hoặc bằng 36."}}},DEGREES:{description:"Chuyển đổi radian sang độ.",abstract:"Chuyển đổi radian sang độ.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/degrees-%E5%87%BD%E6%95%B0-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"góc",detail:"Góc tính bằng radian mà bạn muốn chuyển đổi."}}},EVEN:{description:"Trả về số được làm tròn lên đến số nguyên chẵn gần nhất.",abstract:"Trả về số được làm tròn lên đến số nguyên chẵn gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/even-%E5%87%BD%E6%95%B0-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"số",detail:"Giá trị cần làm tròn."}}},EXP:{description:"Trả về lũy thừa của số e với một số mũ nào đó.",abstract:"Trả về lũy thừa của số e với một số mũ nào đó.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/exp-%E5%87%BD%E6%95%B0-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"số",detail:"Số mũ áp dụng cho cơ số e."}}},FACT:{description:"Trả về giai thừa của một số.",abstract:"Trả về giai thừa của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fact-%E5%87%BD%E6%95%B0-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"số",detail:"Số không âm mà bạn muốn tìm giai thừa của nó. Nếu number không phải là số nguyên thì nó bị cắt cụt."}}},FACTDOUBLE:{description:"Trả về giai thừa kép của một số.",abstract:"Trả về giai thừa kép của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/factdouble-%E5%87%BD%E6%95%B0-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"số",detail:"Giá trị để trả về giai thừa kép của nó. Nếu number không phải là số nguyên thì nó bị cắt cụt."}}},FLOOR:{description:"Làm tròn số theo giá trị tuyệt đối giảm dần",abstract:"Làm tròn số theo giá trị tuyệt đối giảm dần",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/floor-%E5%87%BD%E6%95%B0-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"số",detail:"Giá trị số mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."}}},FLOOR_MATH:{description:"Làm tròn một số xuống số nguyên gần nhất hay tới bội số gần nhất của một số có nghĩa.",abstract:"Làm tròn một số xuống số nguyên gần nhất hay tới bội số gần nhất của một số có nghĩa.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/floor-math-%E5%87%BD%E6%95%B0-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"số",detail:"Giá trị số mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."},mode:{name:"phương thức",detail:"Đối với số âm, kiểm soát xem Số có được làm tròn tới hoặc khác 0 hay không."}}},FLOOR_PRECISE:{description:"Trả về một số được làm tròn xuống tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất. Bất chấp dấu của số, số sẽ được làm tròn xuống.",abstract:"Trả về một số được làm tròn xuống tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/floor-precise-%E5%87%BD%E6%95%B0-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"số",detail:"Giá trị số mà bạn muốn làm tròn."},significance:{name:"bội số",detail:"Bội số mà bạn muốn làm tròn đến."}}},GCD:{description:"Trả về ước số chung lớn nhất của hai hoặc nhiều số nguyên.",abstract:"Trả về ước số chung lớn nhất của hai hoặc nhiều số nguyên.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gcd-%E5%87%BD%E6%95%B0-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"số1",detail:"Giá trị hoặc dải ô đầu tiên được sử dụng để tính toán."},number2:{name:"số2",detail:"Các giá trị hoặc phạm vi bổ sung để sử dụng cho việc tính toán."}}},INT:{description:"Làm tròn số xuống tới số nguyên gần nhất.",abstract:"Làm tròn số xuống tới số nguyên gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/int-%E5%87%BD%E6%95%B0-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"số",detail:"Số thực mà bạn muốn làm tròn xuống một số nguyên."}}},LCM:{description:"Trả về bội số chung ít nhất của các số nguyên.",abstract:"Trả về bội số chung ít nhất của các số nguyên.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/lcm-%E5%87%BD%E6%95%B0-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"số1",detail:"Giá trị hoặc dải ô đầu tiên được sử dụng để tính toán."},number2:{name:"số2",detail:"Các giá trị hoặc phạm vi bổ sung để sử dụng cho việc tính toán."}}},LN:{description:"Trả về lô-ga-rit tự nhiên của một số.",abstract:"Trả về lô-ga-rit tự nhiên của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ln-%E5%87%BD%E6%95%B0-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"số",detail:"Số thực dương mà bạn muốn tính lô-ga-rít tự nhiên của nó."}}},LOG:{description:"Trả về lô-ga-rit của một số tới một cơ số do bạn chỉ định.",abstract:"Trả về lô-ga-rit của một số tới một cơ số do bạn chỉ định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/log-%E5%87%BD%E6%95%B0-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"số",detail:"Số thực dương mà bạn muốn tính lô-ga-rít của nó."},base:{name:"Cơ số",detail:"Cơ số của lô-ga-rit. Nếu cơ số được bỏ qua, thì nó được giả định là 10."}}},LOG10:{description:"Trả về lô-ga-rit cơ số 10 của một số.",abstract:"Trả về lô-ga-rit cơ số 10 của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/log10-%E5%87%BD%E6%95%B0-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"số",detail:"Số thực dương mà bạn muốn tính lô-ga-rít cơ số 10 của nó."}}},MDETERM:{description:"Trả về định thức ma trận của một mảng.",abstract:"Trả về định thức ma trận của một mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mdeterm-%E5%87%BD%E6%95%B0-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"mảng",detail:"Một mảng số với số hàng và số cột bằng nhau."}}},MINVERSE:{description:"Trả về ma trận nghịch đảo của một mảng",abstract:"Trả về ma trận nghịch đảo của một mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/minverse-%E5%87%BD%E6%95%B0-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"mảng",detail:"Một mảng số với số hàng và số cột bằng nhau."}}},MMULT:{description:"Trả về tích ma trận của hai mảng",abstract:"Trả về tích ma trận của hai mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mmult-%E5%87%BD%E6%95%B0-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"mảng1",detail:"Những mảng mà bạn muốn nhân."},array2:{name:"mảng2",detail:"Những mảng mà bạn muốn nhân."}}},MOD:{description:"Trả về số dư sau khi chia một số cho ước số. Kết quả có cùng dấu với ước số.",abstract:"Trả về số dư sau khi chia một số cho ước số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mod-%E5%87%BD%E6%95%B0-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn tìm số dư."},divisor:{name:"số chia",detail:"Số mà bạn muốn chia số cho nó."}}},MROUND:{description:"trả về một số được làm tròn đến bội số mong muốn.",abstract:"trả về một số được làm tròn đến bội số mong muốn.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mround-%E5%87%BD%E6%95%B0-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"số",detail:"Giá trị cần làm tròn."},multiple:{name:"bội số",detail:"Số mà bạn muốn làm tròn số tới bội số của nó."}}},MULTINOMIAL:{description:"Trả về đa thức của một tập hợp số",abstract:"Trả về đa thức của một tập hợp số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/multinomial-%E5%87%BD%E6%95%B0-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"số1",detail:"Giá trị hoặc dải ô đầu tiên được sử dụng để tính toán."},number2:{name:"số2",detail:"Các giá trị hoặc phạm vi bổ sung để sử dụng cho việc tính toán."}}},MUNIT:{description:"Trả về ma trận đơn vị cho chiều đã xác định.",abstract:"Trả về ma trận đơn vị cho chiều đã xác định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/munit-%E5%87%BD%E6%95%B0-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"kích thước",detail:"Chiều là một số nguyên định rõ chiều của ma trận đơn vị mà bạn muốn trả về. Hàm trả về một mảng. Chiều phải lớn hơn 0."}}},ODD:{description:"Trả về số được làm tròn lên tới số nguyên lẻ gần nhất.",abstract:"Trả về số được làm tròn lên tới số nguyên lẻ gần nhất.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/odd-%E5%87%BD%E6%95%B0-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"số",detail:"Giá trị cần làm tròn."}}},PI:{description:"Trả về giá trị của pi",abstract:"Trả về giá trị của pi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pi-%E5%87%BD%E6%95%B0-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"Trả về kết quả của một số được nâng theo một lũy thừa.",abstract:"Trả về kết quả của một số được nâng theo một lũy thừa.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/power-%E5%87%BD%E6%95%B0-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"số",detail:"Số cơ sở. Nó có thể là bất kỳ số thực nào."},power:{name:"năng",detail:"Hàm mũ mà bạn muốn nâng số cơ sở lên theo lũy thừa đó."}}},PRODUCT:{description:"Nhân tất cả các đối số đã cho với nhau và trả về tích của chúng.",abstract:"Nhân các tham số của nó",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/product-%E5%87%BD%E6%95%B0-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"số 1",detail:"Số hoặc phạm vi thứ nhất mà bạn muốn nhân."},number2:{name:"số 2",detail:"Các số hoặc phạm vi bổ sung mà bạn muốn nhân, tối đa 255 đối số."}}},QUOTIENT:{description:"Trả về phần nguyên của một phép chia.",abstract:"Trả về phần nguyên của một phép chia.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/quotient-%E5%87%BD%E6%95%B0-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"tử số",detail:"Số bị chia."},denominator:{name:"mẫu số",detail:"Số chia."}}},RADIANS:{description:"Chuyển đổi độ thành radian.",abstract:"Chuyển đổi độ thành radian.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/radians-%E5%87%BD%E6%95%B0-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"góc",detail:"Góc tính bằng độ mà bạn muốn chuyển đổi."}}},RAND:{description:"Trả về một số ngẫu nhiên trong khoảng từ 0 đến 1",abstract:"Trả về một số ngẫu nhiên trong khoảng từ 0 đến 1",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rand-%E5%87%BD%E6%95%B0-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"Hàm RANDARRAY trả về một mảng các số ngẫu nhiên trong khoảng từ 0 đến 1. Tuy nhiên, bạn có thể chỉ định số hàng và cột cần điền, giá trị tối thiểu và tối đa cũng như trả về số nguyên hay giá trị thập phân.",abstract:"Hàm RANDARRAY trả về một mảng các số ngẫu nhiên trong khoảng từ 0 đến 1.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/randarray-%E5%87%BD%E6%95%B0-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"hàng",detail:"Số hàng được trả về"},columns:{name:"cột",detail:"Số lượng cột được trả về"},min:{name:"giá trị tối thiểu",detail:"Số lượng tối thiểu bạn muốn được trả lại"},max:{name:"giá trị tối đa",detail:"Số lượng tối đa bạn muốn được trả về"},wholeNumber:{name:"số nguyên",detail:"Trả về một số nguyên hoặc một giá trị thập phân"}}},RANDBETWEEN:{description:"Trả về một số nguyên ngẫu nhiên nằm giữa các số do bạn chỉ định.",abstract:"Trả về một số nguyên ngẫu nhiên nằm giữa các số do bạn chỉ định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/randbetween-%E5%87%BD%E6%95%B0-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"giá trị tối thiểu",detail:"Số nguyên nhỏ nhất mà sẽ trả về."},top:{name:"giá trị tối đa",detail:"Số nguyên lớn nhất mà sẽ trả về."}}},ROMAN:{description:"Chuyển đổi số Ả-rập thành số La Mã, dạng văn bản.",abstract:"Chuyển đổi số Ả-rập thành số La Mã, dạng văn bản.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/roman-%E5%87%BD%E6%95%B0-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"số",detail:"Số Ả-rập mà bạn muốn chuyển đổi."},form:{name:"hình thức",detail:"Một số xác định kiểu chữ số La Mã bạn muốn. Kiểu chữ số La Mã bao gồm từ kiểu Cổ điển đến kiểu Giản thể, trở nên ngắn gọn hơn khi giá trị của biểu mẫu tăng lên."}}},ROUND:{description:"làm tròn một số tới một số chữ số đã xác định.",abstract:"làm tròn một số tới một số chữ số đã xác định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/round-%E5%87%BD%E6%95%B0-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn làm tròn."},numDigits:{name:"số chữ số",detail:"Số chữ số mà bạn muốn làm tròn số tới đó."}}},ROUNDBANK:{description:"Làm tròn một số theo cách làm tròn của ngân hàng.",abstract:"Làm tròn một số theo cách làm tròn của ngân hàng.",links:[{title:"Hướng dẫn",url:""}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn làm tròn theo cách làm tròn của ngân hàng."},numDigits:{name:"số chữ số",detail:"Số chữ số mà bạn muốn làm tròn theo cách làm tròn của ngân hàng."}}},ROUNDDOWN:{description:"Làm tròn số xuống, tiến tới không.",abstract:"Làm tròn số xuống, tiến tới không.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rounddown-%E5%87%BD%E6%95%B0-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn làm tròn."},numDigits:{name:"số chữ số",detail:"Số chữ số mà bạn muốn làm tròn số tới đó."}}},ROUNDUP:{description:"Làm tròn một số lên, ra xa số 0 (không).",abstract:"Làm tròn một số lên, ra xa số 0 (không).",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/roundup-%E5%87%BD%E6%95%B0-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn làm tròn."},numDigits:{name:"số chữ số",detail:"Số chữ số mà bạn muốn làm tròn số tới đó."}}},SEC:{description:"Trả về sec của một góc.",abstract:"Trả về sec của một góc.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sec-%E5%87%BD%E6%95%B0-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"số",detail:"Đối số number là góc tính bằng radian mà bạn muốn tìm sec cho nó."}}},SECH:{description:"Trả về sec hyperbolic của một góc.",abstract:"Trả về sec hyperbolic của một góc.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sech-%E5%87%BD%E6%95%B0-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"số",detail:"Đối số number là góc tính bằng radian mà bạn muốn tìm sec hyperbolic cho nó."}}},SERIESSUM:{description:"Trả về tổng của một chuỗi lũy thừa dựa trên công thức.",abstract:"Trả về tổng của một chuỗi lũy thừa dựa trên công thức.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/seriessum-%E5%87%BD%E6%95%B0-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"Giá trị đầu vào cho chuỗi lũy thừa."},n:{name:"n",detail:"Lũy thừa ban đầu bạn muốn tăng x lên."},m:{name:"m",detail:"Số bước lũy thừa sẽ tăng cho mỗi toán hạng trong chuỗi."},coefficients:{name:"hệ số",detail:"Bộ hệ số mà mỗi lũy thừa liên tiếp của x được nhân với nó."}}},SEQUENCE:{description:"Hàm SEQUENCE cho phép bạn tạo một danh sách các số liên tiếp trong một mảng, chẳng hạn như 1, 2, 3, 4.",abstract:"Hàm SEQUENCE cho phép bạn tạo một danh sách các số liên tiếp trong một mảng, chẳng hạn như 1, 2, 3, 4.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sequence-%E5%87%BD%E6%95%B0-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"hàng",detail:"Số hàng cần trả về."},columns:{name:"cột",detail:"Số cột cần trả về."},start:{name:"bắt đầu",detail:"Số đầu tiên trong trình tự."},step:{name:"khoảng cách",detail:"Số lượng cần tăng cho mỗi giá trị tiếp theo trong mảng."}}},SIGN:{description:"Xác định dấu của một số.",abstract:"Xác định dấu của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sign-%E5%87%BD%E6%95%B0-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào."}}},SIN:{description:"Trả về sin của một góc đã cho.",abstract:"Trả về sin của một góc đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sin-%E5%87%BD%E6%95%B0-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"số",detail:"Góc tính bằng radian mà bạn muốn tìm sin cho góc đó."}}},SINH:{description:"Trả về sin hyperbolic của một số.",abstract:"Trả về sin hyperbolic của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sinh-%E5%87%BD%E6%95%B0-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào."}}},SQRT:{description:"Trả về căn bậc hai của số dương.",abstract:"Trả về căn bậc hai của số dương.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sqrt-%E5%87%BD%E6%95%B0-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn tìm căn bậc hai của nó."}}},SQRTPI:{description:"Trả về căn bậc hai của (số * pi).",abstract:"Trả về căn bậc hai của (số * pi).",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sqrtpi-%E5%87%BD%E6%95%B0-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"số",detail:"Số để nhân với số pi."}}},SUBTOTAL:{description:"Trả về tổng phụ trong một danh sách hoặc cơ sở dữ liệu.",abstract:"Trả về tổng phụ trong một danh sách hoặc cơ sở dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/subtotal-%E5%87%BD%E6%95%B0-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"hàm số seri",detail:"Số 1-11 hay 101-111 chỉ định hàm sử dụng cho tổng phụ. 1-11 bao gồm những hàng ẩn bằng cách thủ công, còn 101-111 loại trừ chúng ra; những ô được lọc ra sẽ luôn được loại trừ."},ref1:{name:"Trích dẫn 1",detail:"Phạm vi hoặc tham chiếu được đặt tên đầu tiên mà bạn muốn tính tổng phụ cho nó."},ref2:{name:"Trích dẫn 2",detail:"Phạm vi hoặc chuỗi được đặt tên từ 2 đến 254 mà bạn muốn tính tổng phụ cho nó."}}},SUM:{description:"Thêm các giá trị đơn lẻ, tham chiếu ô, phạm vi hoặc kết hợp cả ba.",abstract:"Tìm tổng các tham số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sum-%E5%87%BD%E6%95%B0-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên bạn muốn thêm vào. Số đó có thể là 4, tham chiếu ô như B6, hoặc ô phạm vi như B2:B8."},number2:{name:"số 2",detail:"Đây là số thứ hai mà bạn muốn cộng. Bạn có thể chỉ định tối đa 255 số bằng cách này."}}},SUMIF:{description:"để tính tổng các giá trị trong một phạm vi đáp ứng tiêu chí mà bạn xác định. ",abstract:"để tính tổng các giá trị trong một phạm vi đáp ứng tiêu chí mà bạn xác định. ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumif-%E5%87%BD%E6%95%B0-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"phạm vi",detail:"Phạm vi ô bạn muốn được đánh giá theo tiêu chí."},criteria:{name:"tiêu chuẩn",detail:"Tiêu chí ở dạng số, biểu thức, tham chiếu ô, văn bản hoặc hàm xác định sẽ cộng các ô nào. Ký tự đại diện có thể được bao gồm - dấu chấm hỏi (?) để khớp với bất kỳ ký tự đơn nào, dấu sao (*) để khớp với bất kỳ chuỗi ký tự nào. Nếu bạn muốn tìm một dấu chấm hỏi hay dấu sao thực sự, hãy gõ dấu ngã (~) trước ký tự."},sumRange:{name:"phạm vi tổng hợp",detail:"Các ô thực tế để cộng nếu bạn muốn cộng các ô không phải là các ô đã xác định trong đối số range. Nếu đối số sum_range bị bỏ qua, Excel cộng các ô được xác định trong đối số range (chính các ô đã được áp dụng tiêu chí)."}}},SUMIFS:{description:"cộng tất cả các đối số của nó mà đáp ứng nhiều tiêu chí.",abstract:"cộng tất cả các đối số của nó mà đáp ứng nhiều tiêu chí.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumifs-%E5%87%BD%E6%95%B0-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"phạm vi tổng hợp",detail:"Phạm vi ô cần tính tổng."},criteriaRange1:{name:"Phạm vi điều kiện 1",detail:"Khu vực được thử nghiệm theo điều kiện 1. Phạm vi Tiêu chí 1 và Tiêu chí 1 đặt các cặp tìm kiếm được sử dụng để tìm kiếm một khu vực theo tiêu chí cụ thể. Khi một mục được tìm thấy trong phạm vi, tổng các giá trị tương ứng trong phạm vi tổng hợp sẽ được tính toán."},criteria1:{name:"điều kiện 1",detail:'Xác định điều kiện để tính tổng các ô trong phạm vi điều kiện 1. Ví dụ: bạn có thể nhập tiêu chí là 32, ">32", B4, "táo" hoặc "32".'},criteriaRange2:{name:"Phạm vi điều kiện 2",detail:"Các trường bổ sung, có thể nhập tối đa 127 trường."},criteria2:{name:"điều kiện 2",detail:"Điều kiện liên kết bổ sung, có thể nhập tối đa 127 điều kiện."}}},SUMPRODUCT:{description:"trả về tổng tích của các dải ô hoặc mảng tương ứng.",abstract:"trả về tổng tích của các dải ô hoặc mảng tương ứng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumproduct-%E5%87%BD%E6%95%B0-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"mảng",detail:"Đối số mảng đầu tiên mà bạn muốn nhân các thành phần của nó rồi cộng tổng."},array2:{name:"mảng",detail:"Các đối số mảng từ 2 đến 255 mà bạn muốn nhân các thành phần của nó rồi cộng tổng."}}},SUMSQ:{description:"Trả về tổng của bình phương của các đối số.",abstract:"Trả về tổng của bình phương của các đối số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumsq-%E5%87%BD%E6%95%B0-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"số 1",detail:"1 đến 255 đối số mà bạn muốn tính tổng của bình phương cho chúng. "},number2:{name:"số 2",detail:"1 đến 255 đối số mà bạn muốn tính tổng của bình phương cho chúng. "}}},SUMX2MY2:{description:"Trả về tổng của hiệu các bình phương của các giá trị tương ứng trong hai mảng.",abstract:"Trả về tổng của hiệu các bình phương của các giá trị tương ứng trong hai mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumx2my2-%E5%87%BD%E6%95%B0-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"mảng 1",detail:"Mảng hoặc phạm vi đầu tiên chứa các giá trị."},arrayY:{name:"mảng 2",detail:"Mảng hoặc phạm vi thứ hai chứa các giá trị."}}},SUMX2PY2:{description:"Trả về tổng của tổng các bình phương của các giá trị tương ứng trong hai mảng.",abstract:"Trả về tổng của tổng các bình phương của các giá trị tương ứng trong hai mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumx2py2-%E5%87%BD%E6%95%B0-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"mảng 1",detail:"Mảng hoặc phạm vi đầu tiên chứa các giá trị."},arrayY:{name:"mảng 2",detail:"Mảng hoặc phạm vi thứ hai chứa các giá trị."}}},SUMXMY2:{description:"Trả về tổng của các bình phương của hiệu của các giá trị tương ứng trong hai mảng.",abstract:"Trả về tổng của các bình phương của hiệu của các giá trị tương ứng trong hai mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sumxmy2-%E5%87%BD%E6%95%B0-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"mảng 1",detail:"Mảng hoặc phạm vi đầu tiên chứa các giá trị."},arrayY:{name:"mảng 2",detail:"Mảng hoặc phạm vi thứ hai chứa các giá trị."}}},TAN:{description:"Trả về tang của góc đã cho.",abstract:"Trả về tang của góc đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tan-%E5%87%BD%E6%95%B0-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"số",detail:"Góc tính bằng radian mà bạn muốn tính tang của góc đó."}}},TANH:{description:"Trả về tang hyperbolic của một số.",abstract:"Trả về tang hyperbolic của một số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tanh-%E5%87%BD%E6%95%B0-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"số",detail:"Bất kỳ số thực nào."}}},TRUNC:{description:"Làm tròn một số thành số nguyên bằng cách loại bỏ phần thập phân của nó.",abstract:"Làm tròn một số thành số nguyên bằng cách loại bỏ phần thập phân của nó.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/trunc-%E5%87%BD%E6%95%B0-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"số",detail:"Số cần làm tròn."},numDigits:{name:"số chữ số",detail:"Là một số xác định độ chính xác của việc cắt bớt. Giá trị mặc định của num_digits là 0 (không)."}}}},...{AVEDEV:{description:"Trả về giá trị trung bình của độ lệch tuyệt đối của các điểm dữ liệu từ giá trị trung bình của chúng.",abstract:"Trả về giá trị trung bình của độ lệch tuyệt đối của các điểm dữ liệu từ giá trị trung bình của chúng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/avedev-%E5%87%BD%E6%95%B0-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình."},number2:{name:"số 2",detail:"Các số khác, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình, tối đa là 255."}}},AVERAGE:{description:"Trả về giá trị trung bình (trung bình cộng) của các tham số.",abstract:"Trả về giá trị trung bình của các tham số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/average-%E5%87%BD%E6%95%B0-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình."},number2:{name:"số 2",detail:"Các số khác, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình, tối đa là 255."}}},AVERAGE_WEIGHTED:{description:"Tìm trung bình cộng gia quyền của một tập giá trị khi biết các giá trị và trọng số tương ứng.",abstract:"Tìm trung bình cộng gia quyền của một tập giá trị khi biết các giá trị và trọng số tương ứng.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/9084098?hl=vi&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"giá_trị",detail:"Giá trị cần tính trung bình."},weights:{name:"trọng_số",detail:"Danh sách trọng số tương ứng để áp dụng."},additionalValues:{name:"giá_trị_bổ_sung",detail:"Các giá trị bổ sung cần tính trung bình."},additionalWeights:{name:"trọng_số_bổ_sung",detail:"Các trọng số bổ sung để áp dụng."}}},AVERAGEA:{description:"Trả về giá trị trung bình của các tham số, bao gồm số, văn bản và giá trị logic.",abstract:"Trả về giá trị trung bình của các tham số, bao gồm số, văn bản và giá trị logic.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/averagea-%E5%87%BD%E6%95%B0-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"Giá trị 1",detail:"Giá trị đầu tiên, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình."},value2:{name:"Giá trị 2",detail:"Các giá trị khác, tham chiếu ô hoặc phạm vi cần tính giá trị trung bình, tối đa là 255."}}},AVERAGEIF:{description:"Trả về giá trị trung bình (trung bình cộng) của các ô trong phạm vi đáp ứng một tiêu chí nhất định.",abstract:"Trả về giá trị trung bình của các ô trong phạm vi đáp ứng một tiêu chí nhất định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/averageif-%E5%87%BD%E6%95%B0-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"Phạm vi",detail:"Một hoặc nhiều ô cần tính giá trị trung bình, có thể chứa số hoặc tham chiếu."},criteria:{name:"Tiêu chí",detail:'Tiêu chí dưới dạng số, biểu thức, tham chiếu ô hoặc văn bản để xác định các ô cần tính giá trị trung bình. Ví dụ: 32, ">32", "táo" hoặc B4.'},averageRange:{name:"Phạm vi tính trung bình",detail:"Các ô thực sự cần tính giá trị trung bình. Nếu bị bỏ qua, sẽ sử dụng phạm vi."}}},AVERAGEIFS:{description:"Trả về giá trị trung bình (trung bình cộng) của các ô đáp ứng nhiều tiêu chí.",abstract:"Trả về giá trị trung bình của các ô đáp ứng nhiều tiêu chí.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/averageifs-%E5%87%BD%E6%95%B0-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"Phạm vi tính trung bình",detail:"Một hoặc nhiều ô cần tính giá trị trung bình, có thể chứa số hoặc tham chiếu."},criteriaRange1:{name:"Phạm vi tiêu chí 1",detail:"Phạm vi đầu tiên được sử dụng để xác định các ô cần tính giá trị trung bình."},criteria1:{name:"Tiêu chí 1",detail:'Tiêu chí xác định các ô cần tính giá trị trung bình. Ví dụ: 32, ">32", "táo" hoặc B4.'},criteriaRange2:{name:"Phạm vi tiêu chí 2",detail:"Các phạm vi bổ sung, tối đa 127."},criteria2:{name:"Tiêu chí 2",detail:"Các tiêu chí bổ sung liên quan, tối đa 127."}}},BETA_DIST:{description:"Trả về hàm phân phối tích lũy beta",abstract:"Trả về hàm phân phối tích lũy beta",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/beta-dist-%E5%87%BD%E6%95%B0-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"số",detail:"Giá trị được sử dụng để tính toán hàm của nó, giữa giá trị giới hạn dưới và giá trị giới hạn trên."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm BETA.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."},A:{name:"giới hạn dưới",detail:"Giới hạn dưới của hàm, giá trị mặc định là 0."},B:{name:"giới hạn trên",detail:"Giới hạn trên của hàm, giá trị mặc định là 1."}}},BETA_INV:{description:"Trả về hàm nghịch đảo của phân phối tích lũy beta cụ thể",abstract:"Trả về hàm nghịch đảo của phân phối tích lũy beta cụ thể",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/beta-inv-%E5%87%BD%E6%95%B0-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố beta."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},A:{name:"giới hạn dưới",detail:"Giới hạn dưới của hàm, giá trị mặc định là 0."},B:{name:"giới hạn trên",detail:"Giới hạn trên của hàm, giá trị mặc định là 1."}}},BINOM_DIST:{description:"Trả về xác suất phân phối nhị thức đơn nguyên",abstract:"Trả về xác suất phân phối nhị thức đơn nguyên",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/binom-dist-%E5%87%BD%E6%95%B0-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"số lần thành công",detail:"Số lần thành công trong các phép thử."},trials:{name:"số phép thử",detail:"Số phép thử độc lập."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm BINOM.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},BINOM_DIST_RANGE:{description:"Trả về xác suất kết quả thử nghiệm sử dụng phân phối nhị thức",abstract:"Trả về xác suất kết quả thử nghiệm sử dụng phân phối nhị thức",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/binom-dist-range-%E5%87%BD%E6%95%B0-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"số phép thử",detail:"Số phép thử độc lập."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},numberS:{name:"số lần thành công",detail:"Số lần thành công trong các phép thử."},numberS2:{name:"Số lần thành công tối đa",detail:"Nếu được cung cấp, trả về xác suất số lần thử thành công nằm trong khoảng từ số lần thành công đến số lần thành công tối đa."}}},BINOM_INV:{description:"Trả về giá trị nhỏ nhất để phân phối nhị thức tích lũy nhỏ hơn hoặc bằng ngưỡng quyết định",abstract:"Trả về giá trị nhỏ nhất để phân phối nhị thức tích lũy nhỏ hơn hoặc bằng ngưỡng quyết định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/binom-inv-%E5%87%BD%E6%95%B0-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"số phép thử",detail:"Số phép thử Bernoulli."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},alpha:{name:"xác suất mục tiêu",detail:"Giá trị tiêu chí."}}},CHISQ_DIST:{description:"Trả về xác suất của vế trái của phân bố χ2.",abstract:"Trả về xác suất của vế trái của phân bố χ2.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chisq-dist-%E5%87%BD%E6%95%B0-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"số",detail:"Giái trị bạn muốn đánh giá phân phối."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì CHISQ.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},CHISQ_DIST_RT:{description:"Trả về xác suất bên phải của phân bố χ2.",abstract:"Trả về xác suất bên phải của phân bố χ2.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chisq-dist-rt-%E5%87%BD%E6%95%B0-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"số",detail:"Giái trị bạn muốn đánh giá phân phối."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."}}},CHISQ_INV:{description:"Trả về hàm nghịch đảo của xác suất ở đuôi trái của phân bố χ2.",abstract:"Trả về hàm nghịch đảo của xác suất ở đuôi trái của phân bố χ2.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chisq-inv-%E5%87%BD%E6%95%B0-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối χ2."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."}}},CHISQ_INV_RT:{description:"Trả về hàm nghịch đảo của xác suất ở đuôi bên phải của phân bố χ2.",abstract:"Trả về hàm nghịch đảo của xác suất ở đuôi bên phải của phân bố χ2.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chisq-inv-rt-%E5%87%BD%E6%95%B0-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối χ2."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."}}},CHISQ_TEST:{description:"Trả về giá trị kiểm độc lập",abstract:"Trả về giá trị kiểm độc lập",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chisq-test-%E5%87%BD%E6%95%B0-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"phạm vi quan sát",detail:"Phạm vi dữ liệu chứa các quan sát để kiểm thử đối với các giá trị dự kiến."},expectedRange:{name:"phạm vi dự kiến",detail:"Phạm vi dữ liệu chứa tỷ lệ của phép nhân tổng hàng và tổng cột với tổng cộng."}}},CONFIDENCE_NORM:{description:"Trả về khoảng tin cậy của trung bình tổng thể, bằng cách dùng phân bố chuẩn hóa.",abstract:"Trả về khoảng tin cậy của trung bình tổng thể, bằng cách dùng phân bố chuẩn hóa.",links:[{title:"Dạy học",url:"https://support.microsoft.com/vi-vn/office/confidence-norm-%E5%87%BD%E6%95%B0-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"Mức quan trọng được dùng để tính toán mức tin cậy. Mức tin cậy bằng 100*(1 - alpha)%, hay nói cách khác, alpha 0,05 cho biết mức tin cậy 95 phần trăm."},standardDev:{name:"Độ lệch chuẩn tổng",detail:"Độ lệch chuẩn tổng thể cho phạm vi dữ liệu và được giả định là đã được xác định."},size:{name:"cỡ mẫu",detail:"Cỡ mẫu."}}},CONFIDENCE_T:{description:"Trả về khoảng tin cậy cho giá trị trung bình của tổng thể (sử dụng phân phối t-student)",abstract:"Trả về khoảng tin cậy cho giá trị trung bình của tổng thể (sử dụng phân phối t-student)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/confidence-t-%E5%87%BD%E6%95%B0-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"Mức quan trọng được dùng để tính toán mức tin cậy. Mức tin cậy bằng 100*(1 - alpha)%, hay nói cách khác, alpha 0,05 cho biết mức tin cậy 95 phần trăm."},standardDev:{name:"Độ lệch chuẩn tổng",detail:"Độ lệch chuẩn tổng thể cho phạm vi dữ liệu và được giả định là đã được xác định."},size:{name:"cỡ mẫu",detail:"Cỡ mẫu."}}},CORREL:{description:"Trả về hệ số tương quan giữa hai tập dữ liệu",abstract:"Trả về hệ số tương quan giữa hai tập dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/correl-%E5%87%BD%E6%95%B0-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"mảng 1",detail:"Phạm vi giá trị ô đầu tiên."},array2:{name:"mảng 2",detail:"Phạm vi giá trị ô thứ hai."}}},COUNT:{description:"Đếm số lượng ô chứa số và số lượng trong danh sách đối số.",abstract:"Đếm số lượng trong danh sách đối số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/count-%E5%87%BD%E6%95%B0-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"giá trị 1",detail:"Là giá trị đầu tiên, tham chiếu ô hoặc vùng để đếm số lượng trong đó."},value2:{name:"giá trị 2",detail:"Là các giá trị khác, tham chiếu ô hoặc vùng để đếm số lượng, có thể lên tới 255 giá trị."}}},COUNTA:{description:`Tính toán các ô chứa bất kỳ loại thông tin nào, bao gồm giá trị lỗi và văn bản trống ("") + Nếu bạn không cần đếm các giá trị logic, văn bản hoặc giá trị lỗi (nói cách khác, bạn chỉ muốn đếm các ô có chứa số), hãy sử dụng hàm COUNT.`,abstract:"Tính toán số lượng các giá trị trong danh sách tham số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/counta-%E5%87%BD%E6%95%B0-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"số 1",detail:"Bắt buộc. Tham số đầu tiên đại diện cho giá trị mà bạn muốn đếm"},number2:{name:"số 2",detail:"Tùy chọn. Các đối số khác đại diện cho giá trị bạn muốn đếm, có thể chứa tối đa 255 đối số."}}},COUNTBLANK:{description:"để đếm số ô trống trong phạm vi ô.",abstract:"để đếm số ô trống trong phạm vi ô.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/countblank-%E5%87%BD%E6%95%B0-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"phạm vi",detail:"Phạm vi mà từ đó bạn muốn đếm các ô trống."}}},COUNTIF:{description:"để đếm số lượng ô đáp ứng một tiêu chí.",abstract:"để đếm số lượng ô đáp ứng một tiêu chí.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/countif-%E5%87%BD%E6%95%B0-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"phạm vi",detail:"Nhóm các ô mà bạn muốn đếm. Phạm vi có thể chứa số, mảng, phạm vi có tên hoặc tham chiếu có chứa số. Các giá trị trống và giá trị văn bản được bỏ qua."},criteria:{name:"tiêu chí",detail:`Số, biểu thức, tham chiếu ô hoặc chuỗi văn bản xác định ô nào sẽ được đếm. +Ví dụ: bạn có thể sử dụng một số như 32, một so sánh như "> 32", một ô như B4, hoặc một từ như "táo".`}}},COUNTIFS:{description:"áp dụng tiêu chí cho các ô trong nhiều dải ô và đếm số lần đáp ứng tất cả các tiêu chí.",abstract:"áp dụng tiêu chí cho các ô trong nhiều dải ô và đếm số lần đáp ứng tất cả các tiêu chí.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/countifs-%E5%87%BD%E6%95%B0-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"phạm vi tiêu chí 1",detail:"Phạm vi thứ nhất trong đó cần đánh giá các tiêu chí liên kết."},criteria1:{name:"tiêu chí 1",detail:'Tiêu chí dưới dạng một số, biểu thức, tham chiếu ô hoặc văn bản để xác định những ô nào cần đếm. Ví dụ: tiêu chí có thể được biểu thị là 32, ">32", B4, "táo" hoặc "32".'},criteriaRange2:{name:"phạm vi tiêu chí 2",detail:"Khu vực bổ sung. Có thể nhập tới 127 khu vực."},criteria2:{name:"tiêu chí 2",detail:"Điều kiện liên kết bổ sung. Có thể nhập tối đa 127 điều kiện."}}},COVARIANCE_P:{description:"Trả về hiệp phương sai của tập hợp, trung bình tích của các độ lệnh cho mỗi cặp điểm dữ liệu trong hai tập dữ liệu.",abstract:"Trả về hiệp phương sai của tập hợp",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/covariance-p-%E5%87%BD%E6%95%B0-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"mảng 1",detail:"Phạm vi giá trị ô đầu tiên."},array2:{name:"mảng 2",detail:"Phạm vi giá trị ô thứ hai."}}},COVARIANCE_S:{description:"Trả về hiệp phương sai mẫu, trung bình tích của các độ lệnh cho mỗi cặp điểm dữ liệu trong hai tập dữ liệu.",abstract:"Trả về hiệp phương sai mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/covariance-s-%E5%87%BD%E6%95%B0-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"mảng 1",detail:"Phạm vi giá trị ô đầu tiên."},array2:{name:"mảng 2",detail:"Phạm vi giá trị ô thứ hai."}}},DEVSQ:{description:"Trả về tổng độ lệch bình phương",abstract:"Trả về tổng độ lệch bình phương",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/devsq-%E5%87%BD%E6%95%B0-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"số 1",detail:"Tham số thứ nhất mà bạn muốn tính tổng bình phương độ lệch."},number2:{name:"số 2",detail:"Tham số từ 2 đến 255 mà bạn muốn tính tổng bình phương độ lệch."}}},EXPON_DIST:{description:"Trả về phân bố hàm mũ.",abstract:"Trả về phân bố hàm mũ.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/expon-dist-%E5%87%BD%E6%95%B0-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"số",detail:"Giái trị bạn muốn đánh giá phân phối."},lambda:{name:"lambda",detail:"Giá trị tham số."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì EXPON.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},F_DIST:{description:"Trả về phân bố xác suất F.",abstract:"Trả về phân bố xác suất F.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/f-dist-%E5%87%BD%E6%95%B0-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"số",detail:"Giá trị để đánh giá hàm."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì F.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},F_DIST_RT:{description:"Trả về phân bố xác suất F (đuôi bên phải)",abstract:"Trả về phân bố xác suất F (đuôi bên phải)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/f-dist-rt-%E5%87%BD%E6%95%B0-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"số",detail:"Giá trị để đánh giá hàm."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."}}},F_INV:{description:"Trả về giá trị đảo của phân bố xác suất F.",abstract:"Trả về giá trị đảo của phân bố xác suất F.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/f-inv-%E5%87%BD%E6%95%B0-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố lũy tích F."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."}}},F_INV_RT:{description:"Trả về giá trị đảo của phân bố xác suất F (đuôi bên phải).",abstract:"Trả về giá trị đảo của phân bố xác suất F (đuôi bên phải).",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/f-inv-rt-%E5%87%BD%E6%95%B0-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố lũy tích F."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."}}},F_TEST:{description:"Trả về kết quả của kiểm tra F-test",abstract:"Trả về kết quả của kiểm tra F-test",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/f-test-%E5%87%BD%E6%95%B0-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng thứ nhất của phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng thứ hai của phạm vi dữ liệu."}}},FISHER:{description:"Trả về phép biến đổi Fisher tại x.",abstract:"Trả về phép biến đổi Fisher tại x.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fisher-%E5%87%BD%E6%95%B0-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"số",detail:"Giá trị số mà bạn muốn biến đổi."}}},FISHERINV:{description:"Trả về nghịch đảo của phép biến đổi Fisher. ",abstract:"Trả về nghịch đảo của phép biến đổi Fisher. ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fisherinv-%E5%87%BD%E6%95%B0-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"số",detail:"Giá trị mà bạn muốn thực hiện nghịch đảo của phép biến đổi."}}},FORECAST:{description:"Trả về giá trị xu hướng tuyến tính",abstract:"Trả về giá trị xu hướng tuyến tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"Điểm dữ liệu mà bạn muốn dự đoán một giá trị cho nó."},knownYs:{name:"mảng _y",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},knownXs:{name:"mảng _x",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},FORECAST_LINEAR:{description:"Trả về giá trị tương lai dựa trên giá trị hiện tại",abstract:"Trả về giá trị tương lai dựa trên giá trị hiện tại",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"Điểm dữ liệu mà bạn muốn dự đoán một giá trị cho nó."},knownYs:{name:"mảng _y",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},knownXs:{name:"mảng _x",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},FREQUENCY:{description:"以垂直数组的形式返回频率分布",abstract:"以垂直数组的形式返回频率分布",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/frequency-%E5%87%BD%E6%95%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"dữ liệuMảng",detail:"Một mảng hoặc tham chiếu tới một tập giá trị mà bạn muốn đếm tần suất của nó. Nếu data_array không chứa giá trị, thì hàm FREQUENCY trả về mảng các số không."},binsArray:{name:"mảng ngắt quãng",detail:"Mảng hoặc tham chiếu tới các khoảng mà bạn muốn nhóm các giá trị trong data_array vào trong đó. Nếu bins_array không chứa giá trị, thì hàm FREQUENCY trả về số thành phần trong data_array."}}},GAMMA:{description:"Trả về giá trị hàm gamma.",abstract:"Trả về giá trị hàm gamma.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gamma-%E5%87%BD%E6%95%B0-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"số",detail:"Giá trị đầu vào của hàm gamma."}}},GAMMA_DIST:{description:"Trả về phân bố gamma.",abstract:"Trả về phân bố gamma.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gamma-dist-%E5%87%BD%E6%95%B0-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm GAMMA.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},GAMMA_INV:{description:"Trả về giá trị đảo của phân bố lũy tích gamma.",abstract:"Trả về giá trị đảo của phân bố lũy tích gamma.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gamma-inv-%E5%87%BD%E6%95%B0-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố gamma."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."}}},GAMMALN:{description:"Trả về lô-ga-rít tự nhiên của hàm gamma, Γ(x).",abstract:"Trả về lô-ga-rít tự nhiên của hàm gamma, Γ(x).",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gammaln-%E5%87%BD%E6%95%B0-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn tính toán GAMMALN."}}},GAMMALN_PRECISE:{description:"Trả về lô-ga-rít tự nhiên của hàm gamma, Γ(x).",abstract:"Trả về lô-ga-rít tự nhiên của hàm gamma, Γ(x).",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gammaln-precise-%E5%87%BD%E6%95%B0-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn tính toán GAMMALN.PRECISE."}}},GAUSS:{description:"Trả về ít hơn 0.5 so với phân phối tích lũy chuẩn",abstract:"Trả về ít hơn 0.5 so với phân phối tích lũy chuẩn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/gauss-%E5%87%BD%E6%95%B0-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"Giá trị mà bạn muốn có phân bố của nó."}}},GEOMEAN:{description:"Trả về giá trị trung bình hình học",abstract:"Trả về giá trị trung bình hình học",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/geomean-%E5%87%BD%E6%95%B0-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô để tính giá trị trung bình hình học."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị trung bình hình học."}}},GROWTH:{description:"Trả về giá trị xu hướng hàm mũ",abstract:"Trả về giá trị xu hướng hàm mũ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/growth-%E5%87%BD%E6%95%B0-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"dữ liệu đã biết_y",detail:"Tập giá trị y mà bạn đã biết trong quan hệ y = b*m^x."},knownXs:{name:"dữ liệu đã biết_x",detail:"Tập giá trị x mà bạn đã biết trong quan hệ y = b*m^x."},newXs:{name:"dữ liệu mới_x",detail:"Là những giá trị x mới mà bạn muốn hàm GROWTH trả về tương ứng với các giá trị y."},constb:{name:"b",detail:"Một giá trị lô-gic cho biết có bắt buộc hằng số b phải bằng 1 hay không."}}},HARMEAN:{description:"Trả về giá trị trung bình điều hòa",abstract:"Trả về giá trị trung bình điều hòa",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/harmean-%E5%87%BD%E6%95%B0-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô để tính giá trị trung bình điều hòa."},number2:{name:"số 2",detail:"Lên đến 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị trung bình hài hòa."}}},HYPGEOM_DIST:{description:"Trả về phân bố siêu bội.",abstract:"Trả về phân bố siêu bội.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/hypgeom-dist-%E5%87%BD%E6%95%B0-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"Số lần thành công mẫu",detail:"Số lần thành công trong mẫu."},numberSample:{name:"Kích thước mẫu",detail:"Kích thước mẫu."},populationS:{name:"Tổng số thành công",detail:"Số lượng thành công trong dân số."},numberPop:{name:"Kích thước tổng thể",detail:"Kích thước tổng thể."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm HYPGEOM.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},INTERCEPT:{description:"Trả về điểm chặn của đường hồi quy tuyến tính",abstract:"Trả về điểm chặn của đường hồi quy tuyến tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/intercept-%E5%87%BD%E6%95%B0-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"mảng _y",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},knownXs:{name:"mảng _x",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},KURT:{description:"Trả về hệ số nhọn của tập dữ liệu.",abstract:"Trả về hệ số nhọn của tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/kurt-%E5%87%BD%E6%95%B0-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"số 1",detail:"Số, tham chiếu ô hoặc phạm vi ô đầu tiên cần tính giá trị đỉnh."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị đỉnh."}}},LARGE:{description:"Trả về giá trị lớn thứ k của tập dữ liệu.",abstract:"Trả về giá trị lớn thứ k của tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/large-%E5%87%BD%E6%95%B0-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu mà bạn muốn xác định giá trị lớn thứ k trong đó."},k:{name:"k",detail:"Vị trí (tính từ lớn nhất) trong mảng hoặc phạm vi ô dữ liệu cần trả về."}}},LINEST:{description:"Trả về các tham số của xu hướng tuyến tính",abstract:"Trả về các tham số của xu hướng tuyến tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/linest-%E5%87%BD%E6%95%B0-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"dữ liệu đã biết_y",detail:"Tập giá trị y mà bạn đã biết trong quan hệ y = m*x+b."},knownXs:{name:"dữ liệu đã biết_x",detail:"Tập giá trị x mà bạn đã biết trong quan hệ y = m*x+b."},constb:{name:"b",detail:"Một giá trị lô-gic cho biết có bắt buộc hằng số b phải bằng 0 hay không."},stats:{name:"thống kê",detail:"Giá trị lô-gic chỉ rõ có trả về các thống kê hồi quy bổ sung hay không."}}},LOGEST:{description:"Trả về các tham số của xu hướng hàm mũ",abstract:"Trả về các tham số của xu hướng hàm mũ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/logest-%E5%87%BD%E6%95%B0-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"dữ liệu đã biết_y",detail:"Tập giá trị y mà bạn đã biết trong quan hệ y = b*m^x."},knownXs:{name:"dữ liệu đã biết_x",detail:"Tập giá trị x mà bạn đã biết trong quan hệ y = b*m^x."},constb:{name:"b",detail:"Một giá trị lô-gic cho biết có bắt buộc hằng số b phải bằng 1 hay không."},stats:{name:"thống kê",detail:"Giá trị lô-gic chỉ rõ có trả về các thống kê hồi quy bổ sung hay không."}}},LOGNORM_DIST:{description:"Trả về phân bố chuẩn lô-ga-rít của",abstract:"Trả về phân bố chuẩn lô-ga-rít của",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/lognorm-dist-%E5%87%BD%E6%95%B0-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì LOGNORM.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},LOGNORM_INV:{description:"Trả về nghịch đảo của hàm phân bố lô-ga-rit chuẩn lũy tích của",abstract:"Trả về nghịch đảo của hàm phân bố lô-ga-rit chuẩn lũy tích của",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/lognorm-inv-%E5%87%BD%E6%95%B0-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố lô-ga-rit chuẩn."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."}}},MARGINOFERROR:{description:"Tính biên độ sai số của một dải giá trị và mức tin cậy.",abstract:"Tính biên độ sai số của một dải giá trị và mức tin cậy.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/12487850?hl=vi&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"dải_ô",detail:"Dải giá trị dùng để tính biên độ sai số."},confidence:{name:"mức_tin_cậy",detail:"Mức tin cậy mong muốn trong khoảng (0, 1)."}}},MAX:{description:"Trả về giá trị lớn nhất trong tập giá trị.",abstract:"Trả về giá trị lớn nhất trong tập giá trị.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/max-%E5%87%BD%E6%95%B0-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"số 1",detail:"Số, tham chiếu ô hoặc phạm vi ô đầu tiên để tính giá trị lớn nhất."},number2:{name:"số 2",detail:"Bạn có thể bao gồm tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị tối đa."}}},MAXA:{description:"Trả về giá trị lớn nhất trong một danh sách đối số.",abstract:"Trả về giá trị lớn nhất trong một danh sách đối số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/maxa-%E5%87%BD%E6%95%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"giá trị 1",detail:"Đối số dạng số thứ nhất mà bạn muốn tìm giá trị lớn nhất trong đó."},value2:{name:"giá trị 2",detail:"Các đối số dạng số thứ 2 đến 255 mà bạn muốn tìm giá trị lớn nhất trong đó."}}},MAXIFS:{description:"trả về giá trị tối đa giữa các ô được xác định bằng một loạt các điều kiện hoặc tiêu chí cho trước.",abstract:"trả về giá trị tối đa giữa các ô được xác định bằng một loạt các điều kiện hoặc tiêu chí cho trước.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/maxifs-%E5%87%BD%E6%95%B0-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"phạm vi giá trị tối đa",detail:"Dải ô thực tế để xác định giá trị lớn nhất."},criteriaRange1:{name:"phạm vi tiêu chí 1",detail:"Là tập hợp các ô cần đánh giá theo tiêu chí."},criteria1:{name:"tiêu chí 1",detail:"Là tiêu chí ở dạng số, biểu thức hoặc văn bản xác định ô nào sẽ được đánh giá là lớn nhất. "},criteriaRange2:{name:"phạm vi tiêu chí 2",detail:"Khu vực bổ sung. Có thể nhập tới 127 khu vực."},criteria2:{name:"tiêu chí 2",detail:"Điều kiện liên kết bổ sung. Có thể nhập tối đa 127 điều kiện."}}},MEDIAN:{description:"Trả về số trung vị của các số đã cho.",abstract:"Trả về số trung vị của các số đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/median-%E5%87%BD%E6%95%B0-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô để tính trung vị."},number2:{name:"số 2",detail:"Bạn có thể bao gồm tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính trung vị."}}},MIN:{description:"Trả về số nhỏ nhất trong tập giá trị.",abstract:"Trả về số nhỏ nhất trong tập giá trị.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/min-%E5%87%BD%E6%95%B0-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"số 1",detail:"Số, tham chiếu ô hoặc phạm vi ô đầu tiên để tính giá trị tối thiểu."},number2:{name:"số 2",detail:"Bạn có thể bao gồm tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị tối thiểu."}}},MINA:{description:"Trả về giá trị nhỏ nhất trong một danh sách đối số.",abstract:"Trả về giá trị nhỏ nhất trong một danh sách đối số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mina-%E5%87%BD%E6%95%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"giá trị 1",detail:"Số, tham chiếu ô hoặc phạm vi ô đầu tiên để tính giá trị tối thiểu."},value2:{name:"giá trị 2",detail:"Bạn có thể bao gồm tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính giá trị tối thiểu."}}},MINIFS:{description:"trả về giá trị tối thiểu trong số các ô được xác định bởi một tập hợp các điều kiện hoặc tiêu chí cho trước.",abstract:"trả về giá trị tối thiểu trong số các ô được xác định bởi một tập hợp các điều kiện hoặc tiêu chí cho trước.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/minifs-%E5%87%BD%E6%95%B0-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"phạm vi giá trị tối thiểu",detail:"Dải ô thực tế để xác định giá trị nhỏ nhất."},criteriaRange1:{name:"phạm vi tiêu chí 1",detail:"Là tập hợp các ô cần đánh giá theo tiêu chí."},criteria1:{name:"tiêu chí 1",detail:"Là tiêu chí ở dạng số, biểu thức hoặc văn bản xác định ô nào sẽ được đánh giá là nhỏ nhất."},criteriaRange2:{name:"phạm vi tiêu chí 2",detail:"Khu vực bổ sung. Có thể nhập tới 127 khu vực."},criteria2:{name:"tiêu chí 2",detail:"Điều kiện liên kết bổ sung. Có thể nhập tối đa 127 điều kiện."}}},MODE_MULT:{description:"Trả về một mảng dọc của các giá trị thường xảy ra nhất, hoặc các giá trị lặp lại trong một mảng hoặc phạm vi dữ liệu.",abstract:"Trả về một mảng dọc của các giá trị thường xảy ra nhất, hoặc các giá trị lặp lại trong một mảng hoặc phạm vi dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mode-mult-%E5%87%BD%E6%95%B0-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô mà chế độ sẽ được tính toán."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính chế độ."}}},MODE_SNGL:{description:"Trả về giá trị xuất hiện nhiều nhất trong tập dữ liệu.",abstract:"Trả về giá trị xuất hiện nhiều nhất trong tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mode-sngl-%E5%87%BD%E6%95%B0-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô mà chế độ sẽ được tính toán."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính chế độ."}}},NEGBINOM_DIST:{description:"Trả về phân bố nhị thức âm",abstract:"Trả về phân bố nhị thức âm",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/negbinom-dist-%E5%87%BD%E6%95%B0-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"số lần thất bại.",detail:"Số lần thất bại."},numberS:{name:"số lần thành công",detail:"Số ngưỡng thành công."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm NEGBINOM.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},NORM_DIST:{description:"Trả về hàm phân phối tích lũy chuẩn",abstract:"Trả về hàm phân phối tích lũy chuẩn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/norm-dist-%E5%87%BD%E6%95%B0-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì NORM.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},NORM_INV:{description:"Trả về hàm nghịch đảo của hàm phân phối tích lũy chuẩn",abstract:"Trả về hàm nghịch đảo của hàm phân phối tích lũy chuẩn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/norm-inv-%E5%87%BD%E6%95%B0-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố chuẩn."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."}}},NORM_S_DIST:{description:"Trả về phân bố chuẩn chuẩn hóa",abstract:"Trả về phân bố chuẩn chuẩn hóa",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/norm-s-dist-%E5%87%BD%E6%95%B0-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"Giá trị mà bạn muốn có phân bố của nó."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì NORM.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},NORM_S_INV:{description:"Trả về giá trị đảo của phân bố lũy tích chuẩn chuẩn hóa.",abstract:"Trả về giá trị đảo của phân bố lũy tích chuẩn chuẩn hóa.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/norm-s-inv-%E5%87%BD%E6%95%B0-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố chuẩn."}}},PEARSON:{description:"Trả về hệ số tương quan mô-men tích Pearson",abstract:"Trả về hệ số tương quan mô-men tích Pearson",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/pearson-%E5%87%BD%E6%95%B0-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},PERCENTILE_EXC:{description:"Trả về giá trị phân vị thứ k trong tập dữ liệu (loại trừ 0 và 1)",abstract:"Trả về giá trị phân vị thứ k trong tập dữ liệu (loại trừ 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentile-exc-%E5%87%BD%E6%95%B0-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},k:{name:"k",detail:"Giá trị phần trăm từ 0 đến 1 (loại trừ 0 và 1)."}}},PERCENTILE_INC:{description:"Trả về giá trị phân vị thứ k trong tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về giá trị phân vị thứ k trong tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentile-inc-%E5%87%BD%E6%95%B0-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},k:{name:"k",detail:"Giá trị phần trăm từ 0 đến 1 (bao gồm 0 và 1)."}}},PERCENTRANK_EXC:{description:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (loại trừ 0 và 1)",abstract:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (loại trừ 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentrank-exc-%E5%87%BD%E6%95%B0-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},x:{name:"x",detail:"Giá trị mà bạn muốn biết thứ hạng của nó."},significance:{name:"chữ số có nghĩa",detail:"Giá trị xác định số chữ số có nghĩa của giá trị phần trăm trả về. Nếu bỏ qua, hàm PERCENTRANK.EXC dùng ba chữ số (0.xxx)."}}},PERCENTRANK_INC:{description:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentrank-inc-%E5%87%BD%E6%95%B0-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},x:{name:"x",detail:"Giá trị mà bạn muốn biết thứ hạng của nó."},significance:{name:"chữ số có nghĩa",detail:"Giá trị xác định số chữ số có nghĩa của giá trị phần trăm trả về. Nếu bỏ qua, hàm PERCENTRANK.INC dùng ba chữ số (0.xxx)."}}},PERMUT:{description:"Trả về số hoán vị của một số đối tượng nhất định",abstract:"Trả về số hoán vị của một số đối tượng nhất định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/permut-%E5%87%BD%E6%95%B0-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"tổng cộng",detail:"Số hạng mục."},numberChosen:{name:"số lượng mẫu",detail:"Số lượng các mục trong mỗi sự sắp xếp."}}},PERMUTATIONA:{description:"Trả về số hoán vị cho số đối tượng đã cho (với tần suất lặp) có thể được chọn từ tổng số đối tượng.",abstract:"Trả về số hoán vị cho số đối tượng đã cho (với tần suất lặp) có thể được chọn từ tổng số đối tượng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/permutationa-%E5%87%BD%E6%95%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"tổng cộng",detail:"Số hạng mục."},numberChosen:{name:"số lượng mẫu",detail:"Số lượng các mục trong mỗi sự sắp xếp."}}},PHI:{description:"Trả về giá trị của hàm mật độ cho một phân bố chuẩn chuẩn hóa.",abstract:"Trả về giá trị của hàm mật độ cho một phân bố chuẩn chuẩn hóa.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/phi-%E5%87%BD%E6%95%B0-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X là số bạn muốn tìm mật độ của phân bố chuẩn chuẩn hóa cho số này."}}},POISSON_DIST:{description:"Trả về phân bố Poisson.",abstract:"Trả về phân bố Poisson.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/poisson-dist-%E5%87%BD%E6%95%B0-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì POISSON.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},PROB:{description:"Trả về xác suất các giá trị trong một phạm vi nằm giữa hai giới hạn.",abstract:"Trả về xác suất các giá trị trong một phạm vi nằm giữa hai giới hạn.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/prob-%E5%87%BD%E6%95%B0-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"số",detail:"Phạm vi số với các giá trị xác suất tương ứng."},probRange:{name:"xác suất",detail:"Một tập hợp các giá trị xác suất được liên kết với một giá trị số."},lowerLimit:{name:"giới hạn dưới",detail:"Giới hạn dưới bằng số của xác suất được tính toán."},upperLimit:{name:"giới hạn trên",detail:"Giới hạn trên bằng số của xác suất được tính toán."}}},QUARTILE_EXC:{description:"Trả về các phần tư của tập dữ liệu (loại trừ 0 và 1)",abstract:"Trả về các phần tư của tập dữ liệu (loại trừ 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/quartile-exc-%E5%87%BD%E6%95%B0-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"mảng",detail:"Một mảng hoặc phạm vi dữ liệu yêu cầu giá trị tứ phân vị."},quart:{name:"giá trị tứ phân",detail:"Giá trị tứ phân vị cần trả về."}}},QUARTILE_INC:{description:"Trả về các phần tư của tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về các phần tư của tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/quartile-inc-%E5%87%BD%E6%95%B0-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"mảng",detail:"Một mảng hoặc phạm vi dữ liệu yêu cầu giá trị tứ phân vị."},quart:{name:"giá trị tứ phân",detail:"Giá trị tứ phân vị cần trả về."}}},RANK_AVG:{description:"Trả về thứ hạng của một số trong một danh sách các số",abstract:"Trả về thứ hạng của một số trong một danh sách các số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rank-avg-%E5%87%BD%E6%95%B0-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn tìm thứ hạng của nó."},ref:{name:"danh sách các số",detail:"Tham chiếu tới danh sách các số. Các giá trị không phải là số trong tham chiếu sẽ được bỏ qua."},order:{name:"xếp hạng số",detail:"Một con số chỉ rõ cách xếp hạng số. 0 hoặc bị bỏ qua đối với thứ tự giảm dần, khác 0 đối với thứ tự tăng dần."}}},RANK_EQ:{description:"Trả về thứ hạng của một số trong một danh sách các số",abstract:"Trả về thứ hạng của một số trong một danh sách các số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rank-eq-%E5%87%BD%E6%95%B0-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn tìm thứ hạng của nó."},ref:{name:"danh sách các số",detail:"Tham chiếu tới danh sách các số. Các giá trị không phải là số trong tham chiếu sẽ được bỏ qua."},order:{name:"xếp hạng số",detail:"Một con số chỉ rõ cách xếp hạng số. 0 hoặc bị bỏ qua đối với thứ tự giảm dần, khác 0 đối với thứ tự tăng dần."}}},RSQ:{description:"Trả về bình phương của hệ số tương quan thời điểm sản phẩm Pearson",abstract:"Trả về hệ số tương quan mô-men tích Pearson",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rsq-%E5%87%BD%E6%95%B0-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},SKEW:{description:"Trả về độ lệch của một phân bố.",abstract:"Trả về độ lệch của một phân bố.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/skew-%E5%87%BD%E6%95%B0-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô cần tính độ lệch."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính toán độ lệch."}}},SKEW_P:{description:"Trả về độ lệch của phân bố dựa trên tổng thể mẫu",abstract:"Trả về độ lệch của phân bố dựa trên tổng thể mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/skew-p-%E5%87%BD%E6%95%B0-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô cần tính độ lệch."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính toán độ lệch."}}},SLOPE:{description:"Trả về độ dốc của đường hồi quy tuyến tính",abstract:"Trả về độ dốc của đường hồi quy tuyến tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/slope-%E5%87%BD%E6%95%B0-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"mảng _y",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},knownXs:{name:"mảng _x",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},SMALL:{description:"Trả về giá trị nhỏ thứ k của tập dữ liệu.",abstract:"Trả về giá trị nhỏ thứ k của tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/small-%E5%87%BD%E6%95%B0-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu dạng số mà bạn muốn xác định giá trị nhỏ thứ k của nó."},k:{name:"k",detail:"Vị trí (từ giá trị nhỏ nhất) trong mảng hoặc phạm vi dữ liệu cần trả về."}}},STANDARDIZE:{description:"Trả về giá trị chuẩn hóa",abstract:"Trả về giá trị chuẩn hóa",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/standardize-%E5%87%BD%E6%95%B0-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"Giá trị bạn muốn chuẩn hóa."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."}}},STDEV_P:{description:"Tính toán độ lệch chuẩn dựa trên toàn bộ tổng thể được cung cấp ở dạng đối số (bỏ qua giá trị lô-gic và văn bản).",abstract:"Tính độ lệch chuẩn dựa trên toàn bộ quần thể mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdev-p-%E5%87%BD%E6%95%B0-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"số 1",detail:"Đối số dạng số đầu tiên tương ứng với tổng thể."},number2:{name:"số 2",detail:"Đối số dạng số từ 2 đến 254 tương ứng với tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."}}},STDEV_S:{description:"Ước tính độ lệch chuẩn dựa trên mẫu (bỏ qua giá trị lô-gic và văn bản trong mẫu).",abstract:"Ước tính độ lệch chuẩn dựa trên mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdev-s-%E5%87%BD%E6%95%B0-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"số 1",detail:"Đối số dạng số đầu tiên tương ứng với mẫu tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."},number2:{name:"số 2",detail:"Đối số dạng số từ 2 đến 254 tương ứng với mẫu tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."}}},STDEVA:{description:"Ước tính độ lệch chuẩn dựa trên một mẫu. Độ lệch chuẩn là số đo độ phân tán của các giá trị so với giá trị trung bình (trung độ).",abstract:"Ước tính độ lệch chuẩn dựa trên một mẫu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdeva-%E5%87%BD%E6%95%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"giá trị 1",detail:"Đối số dạng số đầu tiên tương ứng với mẫu tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."},value2:{name:"giá trị 2",detail:"Đối số dạng số từ 2 đến 254 tương ứng với mẫu tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."}}},STDEVPA:{description:"Tính toán độ lệch chuẩn dựa trên toàn bộ tập hợp được cung cấp ở dạng đối số, bao gồm văn bản và giá trị lô-gic.",abstract:"Tính toán độ lệch chuẩn dựa trên toàn bộ tập hợp được cung cấp ở dạng đối số, bao gồm văn bản và giá trị lô-gic.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdevpa-%E5%87%BD%E6%95%B0-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"giá trị 1",detail:"Đối số dạng số đầu tiên tương ứng với tổng thể."},value2:{name:"giá trị 2",detail:"Đối số dạng số từ 2 đến 254 tương ứng với tổng thể. Bạn cũng có thể sử dụng một mảng đơn hay tham chiếu tới một mảng thay thế cho các đối số được phân tách bởi dấu phẩy."}}},STEYX:{description:"Trả về sai số chuẩn của giá trị y dự đoán cho mỗi giá trị x trong hồi quy.",abstract:"Trả về sai số chuẩn của giá trị y dự đoán cho mỗi giá trị x trong hồi quy.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/steyx-%E5%87%BD%E6%95%B0-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"mảng _y",detail:"Mảng phụ thuộc của mảng hoặc phạm vi dữ liệu."},knownXs:{name:"mảng _x",detail:"Mảng độc lập của mảng hoặc phạm vi dữ liệu."}}},T_DIST:{description:"Trả về phân phối xác suất t-Student của Học sinh",abstract:"Trả về phân phối xác suất t-Student của Học sinh",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-dist-%E5%87%BD%E6%95%B0-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"Cần tính giá trị số của phân bố."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì T.DIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},T_DIST_2T:{description:"Trả về phân phối xác suất t-Student của Học sinh (hai đuôi)",abstract:"Trả về phân phối xác suất t-Student của Học sinh (hai đuôi)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-dist-2t-%E5%87%BD%E6%95%B0-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"Cần tính giá trị số của phân bố."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."}}},T_DIST_RT:{description:"Trả về phân phối xác suất t-Student của Học sinh (đuôi bên phải)",abstract:"Trả về phân phối xác suất t-Student của Học sinh (đuôi bên phải)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-dist-rt-%E5%87%BD%E6%95%B0-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"Cần tính giá trị số của phân bố."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."}}},T_INV:{description:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh",abstract:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-inv-%E5%87%BD%E6%95%B0-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối t-Student của Sinh viên."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."}}},T_INV_2T:{description:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh (hai đuôi)",abstract:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh (hai đuôi)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-inv-2t-%E5%87%BD%E6%95%B0-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối t-Student của Sinh viên."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."}}},T_TEST:{description:"Trả về xác suất kết hợp với Phép thử t-Student.",abstract:"Trả về xác suất kết hợp với Phép thử t-Student.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-test-%E5%87%BD%E6%95%B0-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng thứ nhất của phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng thứ hai của phạm vi dữ liệu."},tails:{name:"đặc điểm đuôi",detail:"Xác định số đuôi của phân phối. Nếu đuôi = 1, T.TEST sử dụng phân phối một phía. Nếu đuôi = 2, T.TEST sử dụng phân phối hai phía."},type:{name:"loại Phép thử",detail:"Loại Phép thử t cần thực hiện."}}},TREND:{description:"Trả về các giá trị theo xu hướng tuyến tính",abstract:"Trả về các giá trị theo xu hướng tuyến tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/trend-%E5%87%BD%E6%95%B0-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"dữ liệu đã biết_y",detail:"Tập giá trị y mà bạn đã biết trong quan hệ y = m*x+b."},knownXs:{name:"dữ liệu đã biết_x",detail:"Tập giá trị x mà bạn đã biết trong quan hệ y = m*x+b."},newXs:{name:"dữ liệu mới_x",detail:"Là những giá trị x mới mà bạn muốn hàm TREND trả về tương ứng với các giá trị y."},constb:{name:"b",detail:"Một giá trị lô-gic cho biết có bắt buộc hằng số b phải bằng 0 hay không."}}},TRIMMEAN:{description:"Trả về trung bình của phần trong một tập dữ liệu.",abstract:"Trả về trung bình của phần trong một tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/trimmean-%E5%87%BD%E6%95%B0-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi giá trị cần cắt bớt và tính trung bình."},percent:{name:"tỷ lệ loại trừ",detail:"Tỷ lệ các điểm dữ liệu cần loại bỏ ra khỏi việc tính toán."}}},VAR_P:{description:"Tính toán phương sai dựa trên toàn bộ tập hợp (bỏ các giá trị lô-gic và văn bản trong tập hợp).",abstract:"Tính toán phương sai dựa trên toàn bộ tập hợp",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/var-p-%E5%87%BD%E6%95%B0-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"số 1",detail:"Đối số dạng số đầu tiên tương ứng với tổng thể."},number2:{name:"số 2",detail:"Là các đối số dạng số từ 2 đến 254 tương ứng với một tập hợp."}}},VAR_S:{description:"Ước tính phương sai dựa trên mẫu (bỏ qua các giá trị lô-gic và văn bản trong mẫu).",abstract:"Ước tính phương sai dựa trên mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/var-s-%E5%87%BD%E6%95%B0-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"số 1",detail:"Đối số dạng số đầu tiên tương ứng với mẫu tổng thể."},number2:{name:"số 2",detail:"Là các đối số dạng số từ 2 đến 254 tương ứng với một mẫu của một tập hợp."}}},VARA:{description:"Ước tính phương sai dựa trên mẫu.",abstract:"Ước tính phương sai dựa trên mẫu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/vara-%E5%87%BD%E6%95%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"giá trị 1",detail:"Đối số dạng số đầu tiên tương ứng với mẫu tổng thể."},value2:{name:"giá trị 2",detail:"Là các đối số dạng số từ 2 đến 254 tương ứng với một mẫu của một tập hợp."}}},VARPA:{description:"Tính toán phương sai dựa trên toàn bộ tập hợp.",abstract:"Tính toán phương sai dựa trên toàn bộ tập hợp.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/varpa-%E5%87%BD%E6%95%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"giá trị 1",detail:"Đối số dạng số đầu tiên tương ứng với tổng thể."},value2:{name:"giá trị 2",detail:"Là các đối số dạng số từ 2 đến 254 tương ứng với một tập hợp."}}},WEIBULL_DIST:{description:"Trả về phân bố Weibull.",abstract:"Trả về phân bố Weibull.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/weibull-dist-%E5%87%BD%E6%95%B0-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm WEIBULL.DIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},Z_TEST:{description:"Trả về giá trị xác suất một phía của kiểm tra z.",abstract:"Trả về giá trị xác suất một phía của kiểm tra z.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/z-test-%E5%87%BD%E6%95%B0-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"mảng",detail:"Mảng hay khoảng dữ liệu để kiểm tra x."},x:{name:"x",detail:"Giá trị cần kiểm tra."},sigma:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn tổng thể (đã biết). Nếu bỏ qua, độ lệch chuẩn mẫu sẽ được dùng."}}}},...{ADDRESS:{description:"Trả về địa chỉ của một ô trong một trang tính dựa trên số hàng và cột đã chỉ định. Ví dụ: ADDRESS(2,3) trả về $C$2. Ví dụ khác: ADDRESS(77,300) trả về $KN$77. Bạn có thể sử dụng các hàm khác như ROW và COLUMN để cung cấp các tham số hàng và cột cho hàm ADDRESS.",abstract:"Trả về tham chiếu đến một ô trong trang tính dưới dạng văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/address-%E5%87%BD%E6%95%B0-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"số hàng",detail:"Một giá trị số xác định số hàng sẽ sử dụng trong tham chiếu ô."},column_num:{name:"số cột",detail:"Một giá trị số xác định số cột sẽ sử dụng trong tham chiếu ô."},abs_num:{name:"loại tham chiếu",detail:"Một giá trị số xác định loại tham chiếu sẽ trả về."},a1:{name:"kiểu tham chiếu",detail:"Một giá trị logic xác định kiểu tham chiếu A1 hoặc R1C1. Trong kiểu A1, cột và hàng được đánh dấu bằng chữ cái và số tương ứng. Trong kiểu tham chiếu R1C1, cả cột và hàng đều được đánh số. Nếu tham số A1 là TRUE hoặc bị bỏ qua, hàm ADDRESS trả về tham chiếu kiểu A1; nếu là FALSE, hàm ADDRESS trả về tham chiếu kiểu R1C1."},sheet_text:{name:"tên trang tính",detail:"Một giá trị văn bản xác định tên trang tính sẽ được sử dụng làm tham chiếu bên ngoài. Ví dụ: công thức =ADDRESS (1,1,,,'Sheet2') trả về Sheet2!$A$1. Nếu tham số sheet_text bị bỏ qua, tên trang tính sẽ không được sử dụng và hàm trả về tham chiếu địa chỉ đến ô trên trang tính hiện tại."}}},AREAS:{description:"Trả về số lượng vùng trong tham chiếu",abstract:"Trả về số lượng vùng trong tham chiếu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/areas-%E5%87%BD%E6%95%B0-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"tham chiếu",detail:"Tham chiếu tới một ô hoặc phạm vi ô và có thể tham chiếu tới nhiều vùng."}}},CHOOSE:{description:"Chọn giá trị từ danh sách các giá trị.",abstract:"Chọn giá trị từ danh sách các giá trị",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/choose-%E5%87%BD%E6%95%B0-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"chỉ số",detail:`Dùng để chỉ định giá trị tham số được chọn. index_num phải là một số từ 1 đến 254 hoặc là một công thức hoặc tham chiếu ô chứa một số từ 1 đến 254. +Nếu index_num là 1, hàm CHOOSE trả về value1; nếu là 2, hàm CHOOSE trả về value2, và cứ như vậy. +Nếu index_num nhỏ hơn 1 hoặc lớn hơn chỉ số của giá trị cuối cùng trong danh sách, hàm CHOOSE trả về giá trị lỗi #VALUE! +Nếu index_num là số thập phân, nó sẽ bị cắt bỏ thành số nguyên trước khi sử dụng.`},value1:{name:"giá trị 1",detail:"CHOOSE sẽ chọn một giá trị hoặc hành động từ các giá trị này dựa trên index_num. Tham số có thể là số, tham chiếu ô, tên được định nghĩa, công thức, hàm hoặc văn bản."},value2:{name:"giá trị 2",detail:"1 đến 254 tham số giá trị."}}},CHOOSECOLS:{description:"Trả về các cột cụ thể trong mảng",abstract:"Trả về các cột cụ thể trong mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/choosecols-%E5%87%BD%E6%95%B0-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"mảng",detail:"Mảng chứa các cột được trả về trong mảng mới."},colNum1:{name:"số cột 1",detail:"Cột đầu tiên sẽ được trả về."},colNum2:{name:"số cột 2",detail:"Các cột khác sẽ được trả về."}}},CHOOSEROWS:{description:"Trả về các hàng cụ thể trong mảng",abstract:"Trả về các hàng cụ thể trong mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/chooserows-%E5%87%BD%E6%95%B0-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"mảng",detail:"Mảng chứa các cột được trả về trong mảng mới."},rowNum1:{name:"số hàng 1",detail:"Số hàng đầu tiên cần trả về."},rowNum2:{name:"số hàng 2",detail:"Số hàng bổ sung cần trả về."}}},COLUMN:{description:"Trả về số cột của tham chiếu ô đã cho.",abstract:"Trả về số cột của tham chiếu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/column-%E5%87%BD%E6%95%B0-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"tham chiếu",detail:"Ô hoặc phạm vi ô mà bạn muốn trả về số cột."}}},COLUMNS:{description:"Trả về số cột trong mảng hoặc tham chiếu.",abstract:"Trả về số cột trong tham chiếu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/columns-%E5%87%BD%E6%95%B0-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"mảng",detail:"Mảng, công thức mảng hoặc tham chiếu đến phạm vi ô mà bạn muốn đếm số cột."}}},DROP:{description:"Loại bỏ một số lượng hàng hoặc cột cụ thể từ đầu hoặc cuối của mảng",abstract:"Loại bỏ một số lượng hàng hoặc cột cụ thể từ đầu hoặc cuối của mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/drop-%E5%87%BD%E6%95%B0-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"mảng",detail:"Mảng mà từ đó thả hàng hoặc cột."},rows:{name:"số hàng",detail:"Số hàng cần thả. Giá trị âm giảm từ cuối mảng."},columns:{name:"số cột",detail:"Số cột cần loại trừ. Giá trị âm giảm từ cuối mảng."}}},EXPAND:{description:"Mở rộng mảng hoặc điền vào kích thước hàng và cột chỉ định",abstract:"Mở rộng mảng hoặc điền vào kích thước hàng và cột chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/expand-%E5%87%BD%E6%95%B0-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"mảng",detail:"Mảng cần bung rộng."},rows:{name:"số hàng",detail:"Số hàng trong mảng đã bung rộng. Nếu thiếu, hàng sẽ không được bung rộng."},columns:{name:"số cột",detail:"Số cột trong mảng đã bung rộng. Nếu thiếu, cột sẽ không được bung rộng."},padWith:{name:"giá trị cần đệm",detail:"Giá trị cần đệm. Mặc định là #N/A."}}},FILTER:{description:"Hàm FILTER lọc một phạm vi dữ liệu dựa trên các điều kiện đã xác định.",abstract:"Hàm FILTER lọc một phạm vi dữ liệu dựa trên các điều kiện đã xác định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/filter-%E5%87%BD%E6%95%B0-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc dải ô cần lọc."},include:{name:"mảng boolean",detail:"Mảng các giá trị Boolean, trong đó TRUE biểu thị một hàng hoặc cột cần giữ lại."},ifEmpty:{name:"trả về giá trị null",detail:"Trả về nếu không có mục nào được giữ lại."}}},FORMULATEXT:{description:"Trả về công thức ở dạng chuỗi.",abstract:"Trả về công thức ở dạng chuỗi.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/formulatext-%E5%87%BD%E6%95%B0-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"tham khảo",detail:"Tham chiếu đến một ô hoặc phạm vi ô."}}},HLOOKUP:{description:"Tìm kiếm một giá trị ở hàng đầu tiên của bảng hoặc trong một mảng số và trả về giá trị trong cột của hàng được chỉ định trong bảng hoặc mảng.",abstract:"Tìm hàng đầu tiên của mảng và trả về giá trị của ô đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/hlookup-%E5%87%BD%E6%95%B0-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"tìm giá trị",detail:"Giá trị cần tìm. Giá trị được tìm thấy phải nằm ở hàng đầu tiên của phạm vi ô được chỉ định trong tham số table_array."},tableArray:{name:"phạm vi",detail:"Phạm vi ô trong đó VLOOKUP tìm kiếm lookup_value và trả về giá trị. Bảng thông tin để tìm dữ liệu. Sử dụng tham chiếu đến một vùng hoặc tên vùng."},rowIndexNum:{name:"số dòng",detail:"Giá trị khớp số hàng table_array sẽ trả về số hàng (row_index_num là 1, trả về giá trị hàng đầu tiên trong table_array, row_index_num 2 trả về giá trị hàng thứ hai trong table_array)."},rangeLookup:{name:"loại truy vấn",detail:"Chỉ định xem bạn muốn tìm kết quả khớp chính xác hay kết quả khớp gần đúng: kết quả khớp gần đúng mặc định - 1/TRUE, kết quả khớp chính xác - 0/FALSE."}}},HSTACK:{description:"Nối mảng theo chiều ngang và tuần tự để trả về mảng lớn hơn",abstract:"Nối mảng theo chiều ngang và tuần tự để trả về mảng lớn hơn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/hstack-%E5%87%BD%E6%95%B0-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"mảng",detail:"Mảng để nối thêm."},array2:{name:"mảng",detail:"Mảng để nối thêm."}}},INDEX:{description:"Trả về tham chiếu của ô nằm ở giao cắt của một hàng và cột cụ thể. Nếu tham chiếu được tạo thành từ các vùng chọn không liền kề, bạn có thể chọn vùng chọn để tìm trong đó.",abstract:"Chọn một giá trị từ một tham chiếu hoặc mảng bằng chỉ mục",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/index-%E5%87%BD%E6%95%B0-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"tham khảo",detail:"Tham chiếu tới một hoặc nhiều phạm vi ô."},rowNum:{name:"số dòng",detail:"Số hàng trong tham chiếu từ đó trả về một tham chiếu."},columnNum:{name:"số cột",detail:"Số cột trong tham chiếu từ đó trả về một tham chiếu."},areaNum:{name:"số khu vực",detail:"Chọn một phạm vi trong tham chiếu mà từ đó trả về giao điểm của row_num và column_num."}}},INDIRECT:{description:"Trả về tham chiếu được chỉ rõ bởi một chuỗi văn bản. Các tham chiếu có thể được đánh giá tức thì để hiển thị nội dung của chúng.",abstract:"Trả về tham chiếu được chỉ rõ bởi một chuỗi văn bản.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/indirect-%E5%87%BD%E6%95%B0-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"văn bản trích dẫn",detail:"Tham chiếu tới một ô có chứa kiểu tham chiếu A1, kiểu tham chiếu R1C1, tên đã xác định dưới dạng tham chiếu, hoặc tham chiếu tới ô dưới dạng chuỗi văn bản."},a1:{name:"loại tham chiếu",detail:"Một giá trị lô-gic chỉ rõ kiểu tham chiếu nào được chứa trong văn bản tham chiếu ô."}}},LOOKUP:{description:"Được sử dụng khi bạn cần truy vấn một hàng hoặc cột và tìm giá trị ở cùng vị trí trong hàng hoặc cột khác",abstract:"Tìm một giá trị trong một vectơ hoặc mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/lookup-%E5%87%BD%E6%95%B0-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"tìm giá trị",detail:"Giá trị cần tìm trong vectơ đầu tiên. Có thể là số, văn bản, giá trị logic, tên hoặc tham chiếu đến một giá trị."},lookupVectorOrArray:{name:"phạm vi truy vấn hoặc mảng",detail:"Một dải ô chỉ chứa một hàng hoặc cột."},resultVector:{name:"phạm vi kết quả",detail:"Một dải ô chỉ chứa một hàng hoặc cột. Đối số phải có cùng kích thước với đối số lookup_vector. Kích thước của chúng phải giống nhau."}}},MATCH:{description:"Hàm MATCH tìm một mục được chỉ định trong phạm vi của ô, sau đó trả về vị trí tương đối của mục đó trong phạm vi này.",abstract:"Tìm một giá trị trong một tham chiếu hoặc mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/match-%E5%87%BD%E6%95%B0-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"giá trị tìm kiếm",detail:"Giá trị mà bạn muốn so khớp trong mảng tìm kiếm."},lookupArray:{name:"mảng tìm kiếm",detail:"Phạm vi ô được tìm kiếm."},matchType:{name:"kiểu khớp",detail:"Số -1, 0 hoặc 1."}}},OFFSET:{description:"Trả về offset tham chiếu từ tham chiếu đã cho",abstract:"Trả về offset tham chiếu từ tham chiếu đã cho",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/offset-%E5%87%BD%E6%95%B0-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"tham chiếu",detail:"Vùng tham chiếu mà bạn muốn căn cứ khoảng cách tham chiếu vào đó."},rows:{name:"số hàng",detail:"Số hàng, lên hoặc xuống, mà bạn muốn ô ở góc trên bên trái tham chiếu tới."},cols:{name:"số cột",detail:"Số cột, về bên trái hoặc phải, mà bạn muốn ô ở góc trên bên trái của kết quả tham chiếu tới."},height:{name:"chiều cao",detail:"Chiều cao, tính bằng số hàng, mà bạn muốn có cho tham chiếu trả về. Chiều cao phải là số dương."},width:{name:"Độ rộng",detail:"Độ rộng, tính bằng số cột, mà bạn muốn có cho tham chiếu trả về. Độ rộng phải là số dương."}}},ROW:{description:"Trả về số hàng được tham chiếu bởi ô đã cho.",abstract:"Trả về số hàng của một tham chiếu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/row-%E5%87%BD%E6%95%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"tham chiếu",detail:"Ô hoặc phạm vi ô mà bạn muốn lấy số hàng của chúng."}}},ROWS:{description:"Trả về số của các hàng trong một tham chiếu hoặc một mảng.",abstract:"Trả về số của các hàng trong một tham chiếu hoặc một mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rows-%E5%87%BD%E6%95%B0-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"mảng",detail:"Một mảng, công thức mảng hay tham chiếu đến phạm vi ô mà bạn muốn lấy số hàng."}}},SORT:{description:"Sắp xếp nội dung của một phạm vi hoặc mảng",abstract:"Sắp xếp nội dung của một phạm vi hoặc mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sort-%E5%87%BD%E6%95%B0-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"mảng",detail:"Dải ô hoặc mảng để sắp xếp."},sortIndex:{name:"chỉ mục sắp xếp",detail:"Số cho biết hàng hoặc cột để sắp xếp theo."},sortOrder:{name:"thứ tự sắp xếp",detail:"Số cho biết thứ tự sắp xếp mong muốn; 1 cho thứ tự tăng dần (mặc định), -1 cho thứ tự giảm dần."},byCol:{name:"hướng sắp xếp",detail:"Giá trị lô-gic cho biết hướng sắp xếp mong muốn; FALSE để sắp xếp theo hàng (mặc định), TRUE để sắp xếp theo cột."}}},SORTBY:{description:"Sắp xếp nội dung của một phạm vi hoặc mảng dựa trên các giá trị trong phạm vi hoặc mảng tương ứng",abstract:"Sắp xếp nội dung của một phạm vi hoặc mảng dựa trên các giá trị trong phạm vi hoặc mảng tương ứng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sortby-%E5%87%BD%E6%95%B0-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc dải ô cần sắp xếp"},byArray1:{name:"sắp xếp mảng 1",detail:"Mảng hoặc dải ô cần sắp xếp theo"},sortOrder1:{name:"thứ tự sắp xếp 1",detail:"Thứ tự dùng để sắp xếp. 1 cho tăng dần, -1 cho giảm dần. Mặc định là tăng dần."},byArray2:{name:"sắp xếp mảng 2",detail:"Mảng hoặc dải ô cần sắp xếp theo"},sortOrder2:{name:"thứ tự sắp xếp 2",detail:"Thứ tự dùng để sắp xếp. 1 cho tăng dần, -1 cho giảm dần. Mặc định là tăng dần."}}},TAKE:{description:"Trả về một số hàng hoặc cột liền kề đã xác định từ điểm bắt đầu hoặc kết thúc của một mảng.",abstract:"Trả về một số hàng hoặc cột liền kề đã xác định từ điểm bắt đầu hoặc kết thúc của một mảng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/take-%E5%87%BD%E6%95%B0-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"mảng",detail:"Mảng lấy hàng hoặc cột từ đó."},rows:{name:"số hàng",detail:"Số hàng cần thực hiện. Giá trị âm lấy từ cuối mảng."},columns:{name:"số cột",detail:"Số cột cần thực hiện. Giá trị âm lấy từ cuối mảng."}}},TOCOL:{description:"Trả về mảng trong một cột đơn.",abstract:"Trả về mảng trong một cột đơn.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tocol-%E5%87%BD%E6%95%B0-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc tham chiếu muốn trả về dưới dạng cột."},ignore:{name:"bỏ qua giá trị",detail:`Có bỏ qua một số kiểu giá trị nhất định hay không. Theo mặc định, không có giá trị nào bị bỏ qua. Xác định một trong những hành động sau: +0 Giữ tất cả các giá trị (mặc định) +1 Bỏ qua giá trị trống +2 Bỏ qua lỗi +3 Bỏ qua giá trị trống và lỗi`},scanByColumn:{name:"quét mảng theo cột",detail:"Quét mảng theo cột. Theo mặc định, mảng được quét theo hàng. Quét xác định xem các giá trị được sắp xếp theo hàng hay theo cột."}}},TOROW:{description:"Trả về mảng trong một hàng đơn.",abstract:"Trả về mảng trong một hàng đơn.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/torow-%E5%87%BD%E6%95%B0-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc tham chiếu muốn trả về dưới dạng một hàng."},ignore:{name:"bỏ qua giá trị",detail:`Có bỏ qua một số kiểu giá trị nhất định hay không. Theo mặc định, không có giá trị nào bị bỏ qua. Xác định một trong những hành động sau: +0 Giữ tất cả các giá trị (mặc định) +1 Bỏ qua giá trị trống +2 Bỏ qua lỗi +3 Bỏ qua giá trị trống và lỗi`},scanByColumn:{name:"quét mảng theo cột",detail:"Quét mảng theo cột. Theo mặc định, mảng được quét theo hàng. Quét xác định xem các giá trị được sắp xếp theo hàng hay theo cột."}}},TRANSPOSE:{description:"Trả về chuyển vị của một mảng",abstract:"Trả về chuyển vị của một mảng",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/transpose-%E5%87%BD%E6%95%B0-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"mảng",detail:"Một mảng hay một phạm vi nhiều ô trên trang tính mà bạn muốn hoán đổi."}}},UNIQUE:{description:"trả về danh sách các giá trị duy nhất trong một danh sách hoặc dải ô. ",abstract:"trả về danh sách các giá trị duy nhất trong một danh sách hoặc dải ô. ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/unique-%E5%87%BD%E6%95%B0-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"mảng",detail:"Dải ô hoặc mảng mà từ đó trả về các hàng hoặc cột duy nhất"},byCol:{name:"theo cột",detail:"Là giá trị logic: so sánh các hàng với nhau và trả về giá trị duy nhất = FALSE hoặc bị bỏ qua so sánh các cột với nhau và trả về giá trị duy nhất = TRUE."},exactlyOnce:{name:"chỉ một lần",detail:"Là một giá trị logic: trả về một hàng hoặc cột chỉ xuất hiện một lần từ một mảng = TRUE; trả về tất cả các hàng hoặc cột riêng biệt từ một mảng = FALSE hoặc bị bỏ qua."}}},VLOOKUP:{description:"Sử dụng VLOOKUP khi bạn cần tìm thứ gì đó theo hàng trong bảng hoặc dải ô. Ví dụ: tìm giá phụ tùng ô tô theo số bộ phận hoặc tìm tên nhân viên dựa trên ID nhân viên của họ.",abstract:"Tìm trong cột đầu tiên của mảng và di chuyển giữa các hàng để trả về giá trị của ô",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"tìm giá trị",detail:"Giá trị cần tìm. Giá trị được tìm thấy phải nằm ở hàng đầu tiên của phạm vi ô được chỉ định trong tham số table_array."},tableArray:{name:"phạm vi",detail:"Phạm vi ô trong đó VLOOKUP tìm kiếm lookup_value và trả về giá trị. Bảng thông tin để tìm dữ liệu. Sử dụng tham chiếu đến một vùng hoặc tên vùng."},colIndexNum:{name:"Số cột",detail:"Số ô chứa giá trị trả về (ô ngoài cùng bên trái của table_array được đánh số bắt đầu bằng 1)."},rangeLookup:{name:"loại truy vấn",detail:"Chỉ định xem bạn muốn tìm kết quả khớp chính xác hay kết quả khớp gần đúng: kết quả khớp gần đúng mặc định - 1/TRUE, kết quả khớp chính xác - 0/FALSE."}}},VSTACK:{description:"Nối các mảng theo chiều dọc để trả về mảng lớn hơn",abstract:"Nối các mảng theo chiều dọc để trả về mảng lớn hơn",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/vstack-%E5%87%BD%E6%95%B0-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"mảng",detail:"Mảng để nối thêm."},array2:{name:"mảng",detail:"Mảng để nối thêm."}}},WRAPCOLS:{description:"Ngắt dòng hoặc cột giá trị được cung cấp theo cột sau một số lượng các thành phần được chỉ định để tạo thành một mảng mới.",abstract:"Ngắt dòng hoặc cột giá trị được cung cấp theo cột sau một số lượng các thành phần được chỉ định để tạo thành một mảng mới.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/wrapcols-%E5%87%BD%E6%95%B0-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"véc-tơ",detail:"Véc-tơ hoặc tham chiếu để ngắt dòng."},wrapCount:{name:"số lần ngắt dòng",detail:"Số lượng giá trị tối đa cho mỗi cột."},padWith:{name:"giá trị cần đệm",detail:"Giá trị cần đệm. Mặc định là #N/A."}}},WRAPROWS:{description:"Ngắt dòng hoặc cột giá trị được cung cấp theo hàng sau một số lượng các thành phần được chỉ định để tạo thành một mảng mới.",abstract:"Ngắt dòng hoặc cột giá trị được cung cấp theo hàng sau một số lượng các thành phần được chỉ định để tạo thành một mảng mới.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/wraprows-%E5%87%BD%E6%95%B0-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"véc-tơ",detail:"Véc-tơ hoặc tham chiếu để ngắt dòng."},wrapCount:{name:"số lần ngắt dòng",detail:"Số lượng giá trị tối đa cho mỗi hàng."},padWith:{name:"giá trị cần đệm",detail:"Giá trị cần đệm. Mặc định là #N/A."}}},XLOOKUP:{description:"Hàm tìm kiếm một phạm vi hoặc mảng và trả về mục tương ứng với kết quả khớp đầu tiên mà nó tìm thấy. Nếu không có kết quả khớp nào tồn tại, XLOOKUP có thể trả về kết quả khớp (gần đúng) gần nhất",abstract:"Tìm kiếm một phạm vi hoặc mảng và trả về mục tương ứng với kết quả khớp đầu tiên được tìm thấy.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/xlookup-%E5%87%BD%E6%95%B0-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"tìm giá trị",detail:"Giá trị cần tìm kiếm. Nếu bị bỏ qua, XLOOKUP sẽ trả về các ô trống được tìm thấy trong lookup_array."},lookupArray:{name:"khu vực tìm kiếm",detail:"Mảng hoặc dải ô cần tìm kiếm."},returnArray:{name:"khu vực trả lại",detail:"Mảng hoặc dải ô cần trả về"},ifNotFound:{name:"giá trị hiển thị mặc định",detail:"Trả về văn bản [if_not_found] mà bạn đã cung cấp nếu không tìm thấy kết quả khớp hợp lệ, nếu không thì trả về #N/A"},matchMode:{name:"loại so khớp",detail:"Chỉ định loại đối sánh: 0 - Đối sánh chính xác. Nếu không tìm thấy thì trả về #N/A. Tùy chọn mặc định. -1 - một kết quả khớp chính xác. Nếu không tìm thấy, mục nhỏ hơn tiếp theo sẽ được trả về. 1 - một trận đấu chính xác. Nếu không tìm thấy, mục lớn hơn tiếp theo sẽ được trả về. 2 - Khớp ký tự đại diện, trong đó *, ? và ~ có ý nghĩa đặc biệt."},searchMode:{name:"chế độ tìm kiếm",detail:"Chỉ định chế độ tìm kiếm sẽ sử dụng: 1 Thực hiện tìm kiếm bắt đầu từ mục đầu tiên, tùy chọn mặc định. -1 Thực hiện tìm kiếm ngược bắt đầu từ mục cuối cùng. 2 thực hiện tìm kiếm nhị phân phụ thuộc vào lookup_array được sắp xếp theo thứ tự tăng dần, -2 thực hiện tìm kiếm nhị phân phụ thuộc vào lookup_array được sắp xếp theo thứ tự giảm dần."}}},XMATCH:{description:"Tìm kiếm một mục được chỉ định trong một mảng hoặc phạm vi ô và trả về vị trí tương đối của mục đó.",abstract:"Trả về vị trí tương đối của một mục trong một mảng hoặc phạm vi ô.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/xmatch-%E5%87%BD%E6%95%B0-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"tìm giá trị",detail:"tìm giá trị."},lookupArray:{name:"khu vực tìm kiếm",detail:"Mảng hoặc dải ô cần tìm kiếm."},matchMode:{name:"loại so khớp",detail:`Chỉ định loại đối sánh: +0 - đối sánh chính xác (mặc định) +-1 - đối sánh chính xác hoặc mục nhỏ nhất tiếp theo +1 - đối sánh chính xác hoặc mục lớn nhất tiếp theo +2 - đối sánh ký tự đại diện, trong đó *, ? và ~ có ý nghĩa đặc biệt .`},searchMode:{name:"loại tìm kiếm",detail:`Chỉ định loại tìm kiếm: +1 - Tìm kiếm từ đầu đến cuối (mặc định) +-1 - Tìm kiếm từ cuối đến đầu (tìm kiếm ngược). +2 - Thực hiện tìm kiếm nhị phân dựa trên việc sắp xếp lookup_array theo thứ tự tăng dần. Nếu không được sắp xếp, kết quả không hợp lệ sẽ được trả về. +2 - Thực hiện tìm kiếm nhị phân dựa trên lookup_array được sắp xếp theo thứ tự giảm dần. Nếu không được sắp xếp, kết quả không hợp lệ sẽ được trả về.`}}}},...{DAVERAGE:{description:"Trả về giá trị trung bình của các mục được chọn trong cơ sở dữ liệu",abstract:"Trả về giá trị trung bình của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/daverage-%E5%87%BD%E6%95%B0-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DCOUNT:{description:"Đếm số ô chứa số trong cơ sở dữ liệu",abstract:"Đếm số ô chứa số trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dcount-%E5%87%BD%E6%95%B0-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DCOUNTA:{description:"Đếm số ô không trống trong cơ sở dữ liệu",abstract:"Đếm số ô không trống trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dcounta-%E5%87%BD%E6%95%B0-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DGET:{description:"Trích xuất một bản ghi duy nhất từ cơ sở dữ liệu khớp với các điều kiện đã chỉ định",abstract:"Trích xuất một bản ghi duy nhất từ cơ sở dữ liệu khớp với các điều kiện đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dget-%E5%87%BD%E6%95%B0-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DMAX:{description:"Trả về giá trị lớn nhất của các mục được chọn trong cơ sở dữ liệu",abstract:"Trả về giá trị lớn nhất của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dmax-%E5%87%BD%E6%95%B0-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DMIN:{description:"Trả về giá trị nhỏ nhất của các mục được chọn trong cơ sở dữ liệu",abstract:"Trả về giá trị nhỏ nhất của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dmin-%E5%87%BD%E6%95%B0-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DPRODUCT:{description:"Nhân các giá trị trong trường cụ thể của các bản ghi trong cơ sở dữ liệu khớp với các điều kiện đã chỉ định",abstract:"Nhân các giá trị trong trường cụ thể của các bản ghi trong cơ sở dữ liệu khớp với các điều kiện đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dproduct-%E5%87%BD%E6%95%B0-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DSTDEV:{description:"Ước tính độ lệch chuẩn dựa trên mẫu của các mục được chọn trong cơ sở dữ liệu",abstract:"Ước tính độ lệch chuẩn dựa trên mẫu của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dstdev-%E5%87%BD%E6%95%B0-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DSTDEVP:{description:"Tính toán độ lệch chuẩn dựa trên tổng thể mẫu của các mục được chọn trong cơ sở dữ liệu",abstract:"Tính toán độ lệch chuẩn dựa trên tổng thể mẫu của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dstdevp-%E5%87%BD%E6%95%B0-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DSUM:{description:"Tính tổng các số trong cột trường của các bản ghi trong cơ sở dữ liệu khớp với các điều kiện đã chỉ định",abstract:"Tính tổng các số trong cột trường của các bản ghi trong cơ sở dữ liệu khớp với các điều kiện đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dsum-%E5%87%BD%E6%95%B0-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DVAR:{description:"Ước tính phương sai dựa trên mẫu của các mục được chọn trong cơ sở dữ liệu",abstract:"Ước tính phương sai dựa trên mẫu của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dvar-%E5%87%BD%E6%95%B0-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}},DVARP:{description:"Tính toán phương sai dựa trên tổng thể mẫu của các mục được chọn trong cơ sở dữ liệu",abstract:"Tính toán phương sai dựa trên tổng thể mẫu của các mục được chọn trong cơ sở dữ liệu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dvarp-%E5%87%BD%E6%95%B0-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"cơ sở dữ liệu",detail:"là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu."},field:{name:"cánh đồng",detail:"chỉ rõ cột nào được dùng trong hàm."},criteria:{name:"tiêu chuẩn",detail:"là phạm vi ô chứa các điều kiện mà bạn chỉ rõ."}}}},...{ASC:{description:"Chuyển các chữ cái hoặc ký tự Kana toàn chiều rộng (byte kép) trong một chuỗi thành ký tự nửa chiều rộng (byte đơn)",abstract:"Chuyển các chữ cái hoặc ký tự Kana toàn chiều rộng (byte kép) trong một chuỗi thành ký tự nửa chiều rộng (byte đơn)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/asc-%E5%87%BD%E6%95%B0-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản hoặc tham chiếu tới một ô có chứa văn bản mà bạn muốn thay đổi. Nếu văn bản không chứa chữ nào có độ rộng toàn phần, thì văn bản không thay đổi."}}},ARRAYTOTEXT:{description:"Hàm ARRAYTOTEXT trả về một mảng các giá trị văn bản trong bất kỳ phạm vi nào được chỉ định.",abstract:"Hàm ARRAYTOTEXT trả về một mảng các giá trị văn bản trong bất kỳ phạm vi nào được chỉ định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/arraytotext-%E5%87%BD%E6%95%B0-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"mảng",detail:"Mảng cần trả về dưới dạng văn bản."},format:{name:"Định dạng của dữ",detail:`Định dạng của dữ liệu trả về. Nó có thể là một trong hai giá trị: +0 Mặc định. Định dạng ngắn gọn dễ đọc. +1 Định dạng nghiêm ngặt bao gồm ký tự thoát và dấu tách hàng. Tạo một chuỗi có thể được phân tích khi nhập vào thanh công thức. Đóng gói các chuỗi trả về trong dấu ngoặc kép, ngoại trừ Booleans, Numbers và Errors.`}}},BAHTTEXT:{description:"Chuyển đổi số thành văn bản bằng định dạng tiền tệ Thái Baht",abstract:"Chuyển đổi số thành văn bản bằng định dạng tiền tệ Thái Baht",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/bahttext-%E5%87%BD%E6%95%B0-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"số",detail:"Là số mà bạn muốn chuyển sang văn bản hoặc tham chiếu đến ô có chứa số, hay công thức định trị thành số."}}},CHAR:{description:"Trả về ký tự được xác định bởi mã số",abstract:"Trả về ký tự được xác định bởi mã số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/char-%E5%87%BD%E6%95%B0-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"số",detail:"Số từ 1 đến 255 xác định bạn muốn ký tự nào. Ký tự này nằm trong bộ ký tự mà máy tính của bạn dùng."}}},CLEAN:{description:"Loại bỏ tất cả các ký tự không thể in được khỏi văn bản",abstract:"Loại bỏ tất cả các ký tự không thể in được khỏi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/clean-%E5%87%BD%E6%95%B0-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"bản văn",detail:"Bất kỳ thông tin trang tính nào bạn muốn loại bỏ ký tự không in được khỏi đó."}}},CODE:{description:"Trả về mã số của ký tự đầu tiên trong chuỗi văn bản",abstract:"Trả về mã số của ký tự đầu tiên trong chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/code-%E5%87%BD%E6%95%B0-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản mà bạn muốn mã của ký tự đầu tiên cho văn bản đó."}}},CONCAT:{description:"Kết hợp văn bản từ nhiều vùng và/hoặc chuỗi lại với nhau, nhưng không cung cấp tham số phân tách hoặc IgnoreEmpty.",abstract:"Kết hợp văn bản từ nhiều vùng và/hoặc chuỗi lại với nhau, nhưng không cung cấp tham số phân tách hoặc IgnoreEmpty",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/concat-%E5%87%BD%E6%95%B0-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"bản văn 1",detail:"Mục văn bản đầu tiên để kết hợp. Có thể là một chuỗi hoặc một mảng chuỗi, chẳng hạn như một vùng ô."},text2:{name:"bản văn 2",detail:"Các mục văn bản khác để kết hợp. Có thể lên đến 253 tham số văn bản. Mỗi tham số có thể là một chuỗi hoặc một mảng chuỗi, chẳng hạn như một vùng ô."}}},CONCATENATE:{description:"Kết hợp nhiều mục văn bản thành một mục văn bản",abstract:"Kết hợp nhiều mục văn bản thành một mục văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/concatenate-%E5%87%BD%E6%95%B0-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"bản văn 1",detail:"Mục đầu tiên để kết hợp. Có thể là một giá trị văn bản, một số hoặc một tham chiếu ô."},text2:{name:"bản văn 2",detail:"Các mục văn bản khác để kết hợp. Có thể có tối đa 255 mục, tổng cộng hỗ trợ tối đa 8,192 ký tự."}}},DBCS:{description:"Chuyển các chữ cái hoặc ký tự Kana nửa chiều rộng (byte đơn) trong một chuỗi thành ký tự toàn chiều rộng (byte kép)",abstract:"Chuyển các chữ cái hoặc ký tự Kana nửa chiều rộng (byte đơn) trong một chuỗi thành ký tự toàn chiều rộng (byte kép)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dbcs-%E5%87%BD%E6%95%B0-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản hoặc tham chiếu tới một ô có chứa văn bản mà bạn muốn thay đổi. Nếu văn bản không chứa chữ Tiếng Anh có độ rộng bán phần hay katakana nào, thì văn bản không đổi."}}},DOLLAR:{description:"Chuyển đổi một số thành văn bản bằng cách dùng định dạng tiền tệ",abstract:"Chuyển đổi một số thành văn bản bằng cách dùng định dạng tiền tệ",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/dollar-%E5%87%BD%E6%95%B0-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"số",detail:"Số, tham chiếu đến ô chứa số hoặc công thức sẽ trả về số."},decimals:{name:"số chữ thập phân",detail:"Số chữ số nằm bên phải dấu thập phân. Nếu đây là số âm, thì số được làm tròn sang bên trái dấu thập phân. Nếu bạn bỏ qua đối số decimals, nó được giả định là bằng 2."}}},EXACT:{description:"Kiểm tra xem hai giá trị văn bản có giống nhau hay không",abstract:"Kiểm tra xem hai giá trị văn bản có giống nhau hay không",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/exact-%E5%87%BD%E6%95%B0-f24a4864-e914-4e50-8bdb-7e82048c5c44"}],functionParameter:{text1:{name:"bản văn 1",detail:"Chuỗi văn bản đầu tiên."},text2:{name:"bản văn 2",detail:"Chuỗi văn bản thứ hai."}}},FIND:{description:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (phân biệt chữ hoa chữ thường)",abstract:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (phân biệt chữ hoa chữ thường)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"chuỗi tìm kiếm",detail:'Chuỗi cần tìm trong "Văn bản cần tìm kiếm".'},withinText:{name:"văn bản để tìm kiếm",detail:'Lần xuất hiện đầu tiên của văn bản để tìm kiếm "chuỗi tìm kiếm".'},startNum:{name:"vị trí bắt đầu",detail:'Vị trí ký tự để bắt đầu tìm kiếm trong "văn bản cần tìm kiếm". Nếu bỏ qua, giá trị là 1 được giả định.'}}},FINDB:{description:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (phân biệt chữ hoa chữ thường)",abstract:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (phân biệt chữ hoa chữ thường)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"chuỗi tìm kiếm",detail:'Chuỗi cần tìm trong "Văn bản cần tìm kiếm".'},withinText:{name:"văn bản để tìm kiếm",detail:'Lần xuất hiện đầu tiên của văn bản để tìm kiếm "chuỗi tìm kiếm".'},startNum:{name:"vị trí bắt đầu",detail:'Vị trí ký tự để bắt đầu tìm kiếm trong "văn bản cần tìm kiếm". Nếu bỏ qua, giá trị là 1 được giả định.'}}},FIXED:{description:"Làm tròn một số thành một số thập phân đã chỉ định và trả về kết quả dưới dạng văn bản với hoặc không có dấu phân tách thập phân",abstract:"Làm tròn một số thành một số thập phân đã chỉ định và trả về kết quả dưới dạng văn bản với hoặc không có dấu phân tách thập phân",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/fixed-%E5%87%BD%E6%95%B0-621c3e2a-50ea-4b85-aab2-b11a7ff73369"}],functionParameter:{number:{name:"số",detail:"Số bạn muốn làm tròn và chuyển đổi thành văn bản."},decimals:{name:"số chữ thập phân",detail:"Số chữ số nằm bên phải dấu thập phân. Nếu đây là số âm, thì số được làm tròn sang bên trái dấu thập phân. Nếu bạn bỏ qua đối số decimals, nó được giả định là bằng 2."},noCommas:{name:"tắt dấu phân cách",detail:"Giá trị logic, nếu ĐÚNG, sẽ ngăn FIXED đưa dấu phẩy vào văn bản trả về."}}},LEFT:{description:"Trả về ký tự ngoài cùng bên trái trong giá trị văn bản",abstract:"Trả về ký tự ngoài cùng bên trái trong giá trị văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},numChars:{name:"số ký tự",detail:"Chỉ định số ký tự bạn muốn LEFT trích xuất."}}},LEFTB:{description:"Trả về ký tự ngoài cùng bên trái trong giá trị văn bản",abstract:"Trả về ký tự ngoài cùng bên trái trong giá trị văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},numBytes:{name:"số Byte",detail:"Chỉ rõ số ký tự mà bạn muốn hàm LEFTB trích xuất, dựa trên byte."}}},LEN:{description:"Trả về số lượng ký tự trong một chuỗi văn bản",abstract:"Trả về số lượng ký tự trong một chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/len-lenb-%E5%87%BD%E6%95%B0-e7dc30ca-f8b2-4a7c-8f5b-6e82a0d017ef"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản mà bạn muốn tìm độ dài của nó. Khoảng trống được đếm là ký tự."}}},LENB:{description:"trả về số byte dùng để biểu thị các ký tự trong một chuỗi văn bản.",abstract:"trả về số byte dùng để biểu thị các ký tự trong một chuỗi văn bản.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản mà bạn muốn tìm độ dài của nó. Khoảng trống được đếm là ký tự."}}},LOWER:{description:"Chuyển đổi tất cả các chữ cái trong văn bản thành chữ thường",abstract:"Chuyển đổi tất cả các chữ cái trong văn bản thành chữ thường",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/lower-%E5%87%BD%E6%95%B0-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản mà bạn muốn chuyển đổi thành chữ thường."}}},MID:{description:"Trả về một số ký tự cụ thể bắt đầu tại một vị trí được chỉ định trong chuỗi văn bản",abstract:"Trả về một số ký tự cụ thể bắt đầu tại một vị trí được chỉ định trong chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},startNum:{name:"vị trí bắt đầu",detail:"Ví trí của ký tự thứ nhất mà bạn muốn trích xuất trong văn bản."},numChars:{name:"số ký tự",detail:"Chỉ định số ký tự bạn muốn MID trích xuất."}}},MIDB:{description:"Trả về một số ký tự cụ thể bắt đầu tại một vị trí được chỉ định trong chuỗi văn bản",abstract:"Trả về một số ký tự cụ thể bắt đầu tại một vị trí được chỉ định trong chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},startNum:{name:"vị trí bắt đầu",detail:"Ví trí của ký tự thứ nhất mà bạn muốn trích xuất trong văn bản."},numBytes:{name:"số Byte",detail:"Chỉ rõ số ký tự mà bạn muốn hàm MIDB trích xuất, dựa trên byte."}}},NUMBERSTRING:{description:"Chuyển đổi số sang chuỗi tiếng Trung",abstract:"Chuyển đổi số sang chuỗi tiếng Trung",links:[{title:"Hướng dẫn",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"số",detail:"Giá trị được chuyển đổi thành chuỗi tiếng Trung."},type:{name:"kiểu",detail:`Kiểu kết quả trả về. +1. chữ thường Trung Quốc +2. Viết hoa chữ Hán +3. Đọc và viết chữ Hán`}}},NUMBERVALUE:{description:"Chuyển văn bản sang số, theo cách độc lập vị trí.",abstract:"Chuyển văn bản sang số, theo cách độc lập vị trí.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/numbervalue-%E5%87%BD%E6%95%B0-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản chuyển sang số."},decimalSeparator:{name:"dấu phân cách thập phân",detail:"Ký tự dùng để tách số nguyên và phần phân số của kết quả."},groupSeparator:{name:"dấu phân cách nhóm",detail:"Ký tự dùng để tách các nhóm số."}}},PHONETIC:{description:"Trả về chuỗi Furigana từ chuỗi văn bản",abstract:"Trả về chuỗi Furigana từ chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/phonetic-%E5%87%BD%E6%95%B0-d510701f-2a90-4610-9a82-87c874aad6c6"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},PROPER:{description:"Chuyển đổi chữ cái đầu tiên của mỗi từ trong chuỗi văn bản thành chữ hoa và tất cả các chữ cái khác thành chữ thường",abstract:"Chuyển đổi chữ cái đầu tiên của mỗi từ trong chuỗi văn bản thành chữ hoa và tất cả các chữ cái khác thành chữ thường",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/proper-%E5%87%BD%E6%95%B0-f79f1eeb-bd40-43d3-8273-10362ab89da1"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản được đặt trong dấu ngoặc kép, công thức trả về văn bản hoặc tham chiếu đến ô chứa văn bản mà bạn muốn viết hoa một phần."}}},REGEXEXTRACT:{description:"Trích xuất chuỗi con khớp đầu tiên theo một biểu thức chính quy.",abstract:"Trích xuất chuỗi con khớp đầu tiên theo một biểu thức chính quy.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=vi"}],functionParameter:{text:{name:"văn bản",detail:"Văn bản nhập vào."},regularExpression:{name:"biểu thức chính quy",detail:"Phần đầu tiên văn_bản khớp với biểu thức này sẽ được trả về."}}},REGEXMATCH:{description:"Xem một đoạn văn bản có khớp với một biểu thức chính quy hay không.",abstract:"Xem một đoạn văn bản có khớp với một biểu thức chính quy hay không.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=vi"}],functionParameter:{text:{name:"văn bản",detail:"Văn bản cần thử nghiệm theo biểu thức chính quy."},regularExpression:{name:"biểu thức chính quy",detail:"Biểu thức chính quy dùng để thử nghiệm văn bản."}}},REGEXREPLACE:{description:"Thay thế một phần của một chuỗi văn bản bằng một chuỗi văn bản khác bằng cách sử dụng các biểu thức chính quy.",abstract:"Thay thế một phần của một chuỗi văn bản bằng một chuỗi văn bản khác bằng cách sử dụng các biểu thức chính quy.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=vi"}],functionParameter:{text:{name:"văn bản",detail:"Văn bản, một phần của văn bản này sẽ được thay thế."},regularExpression:{name:"biểu thức chính quy",detail:"Biểu thức chính quy. Tất cả trường hợp phù hợp trong văn_bản sẽ được thay thế."},replacement:{name:"thay thế",detail:"Văn bản sẽ được chèn vào văn bản gốc."}}},REPLACE:{description:"Thay thế ký tự trong văn bản",abstract:"Thay thế ký tự trong văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"văn bản cũ",detail:"Văn bản mà bạn muốn thay thế một vài ký tự trong đó."},startNum:{name:"vị trí bắt đầu",detail:"Vị trí của ký tự đầu tiên trong văn bản cần thay thế."},numChars:{name:"số ký tự",detail:"Chỉ định số ký tự bạn muốn REPLACE thay thế."},newText:{name:"văn bản thay thế",detail:"Văn bản sẽ thay thế các ký tự trong văn bản cũ."}}},REPLACEB:{description:"Thay thế ký tự trong văn bản",abstract:"Thay thế ký tự trong văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"văn bản cũ",detail:"Văn bản mà bạn muốn thay thế một vài ký tự trong đó."},startNum:{name:"vị trí bắt đầu",detail:"Vị trí của ký tự đầu tiên trong văn bản cần thay thế."},numBytes:{name:"số Byte",detail:"Chỉ định, tính bằng byte, số lượng ký tự được thay thế bằng REPLACEB."},newText:{name:"văn bản thay thế",detail:"Văn bản sẽ thay thế các ký tự trong văn bản cũ."}}},REPT:{description:"Lặp lại một chuỗi văn bản một số lần đã chỉ định",abstract:"Lặp lại một chuỗi văn bản một số lần đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rept-%E5%87%BD%E6%95%B0-e109c0d0-487e-4f88-91eb-8a41d0d6a179"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản bạn muốn lặp lại."},numberTimes:{name:"lần lặp lại",detail:"Số lần bạn muốn lặp lại văn bản."}}},RIGHT:{description:"Trả về một số ký tự cụ thể từ cuối của chuỗi văn bản",abstract:"Trả về một số ký tự cụ thể từ cuối của chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/right-rightb-%E5%87%BD%E6%95%B0-8b679d3f-2c2d-46b7-9071-45c8836a1dbd"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},numChars:{name:"số ký tự",detail:"Chỉ định số ký tự bạn muốn RIGHT trích xuất."}}},RIGHTB:{description:"Trả về một số ký tự cụ thể từ cuối của chuỗi văn bản",abstract:"Trả về một số ký tự cụ thể từ cuối của chuỗi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"bản văn",detail:"Chuỗi văn bản chứa các ký tự bạn muốn trích xuất."},numBytes:{name:"số Byte",detail:"Chỉ rõ số ký tự mà bạn muốn hàm RIGHTB trích xuất, dựa trên byte."}}},SEARCH:{description:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (không phân biệt chữ hoa chữ thường)",abstract:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (không phân biệt chữ hoa chữ thường)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/search-searchb-%E5%87%BD%E6%95%B0-dfb12d6f-c60d-4a40-b090-7d2617b49e11"}],functionParameter:{findText:{name:"chuỗi tìm kiếm",detail:'Chuỗi cần tìm trong "Văn bản cần tìm kiếm".'},withinText:{name:"văn bản để tìm kiếm",detail:'Lần xuất hiện đầu tiên của văn bản để tìm kiếm "chuỗi tìm kiếm".'},startNum:{name:"vị trí bắt đầu",detail:'Vị trí ký tự để bắt đầu tìm kiếm trong "văn bản cần tìm kiếm". Nếu bỏ qua, giá trị là 1 được giả định.'}}},SEARCHB:{description:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (không phân biệt chữ hoa chữ thường)",abstract:"Trả về vị trí của một chuỗi văn bản trong một chuỗi văn bản khác (không phân biệt chữ hoa chữ thường)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/search-searchb-%E5%87%BD%E6%95%B0-dfb12d6f-c60d-4a40-b090-7d2617b49e11"}],functionParameter:{findText:{name:"chuỗi tìm kiếm",detail:'Chuỗi cần tìm trong "Văn bản cần tìm kiếm".'},withinText:{name:"văn bản để tìm kiếm",detail:'Lần xuất hiện đầu tiên của văn bản để tìm kiếm "chuỗi tìm kiếm".'},startNum:{name:"vị trí bắt đầu",detail:'Vị trí ký tự để bắt đầu tìm kiếm trong "văn bản cần tìm kiếm". Nếu bỏ qua, giá trị là 1 được giả định.'}}},SPLIT:{description:"Chia một chuỗi văn bản thành một bảng con",abstract:"Chia một chuỗi văn bản thành một bảng con",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/split-%E5%87%BD%E6%95%B0-4357fb3e-7256-49ca-8711-94dbbcbe87c9"}],functionParameter:{text:{name:"text",detail:"Chuỗi văn bản mà bạn muốn chia thành các phần tử bảng con."},delimiter:{name:"delimiter",detail:"Ký tự hoặc chuỗi ký tự mà bạn muốn sử dụng làm dấu phân cách."},split_by_each:{name:"split_by_each",detail:"Giá trị logic để chỉ định liệu chia chuỗi bằng từng ký tự trong dấu phân cách."},remove_empty_text:{name:"remove_empty_text",detail:"Giá trị logic để chỉ định liệu xóa các chuỗi trống khỏi các kết quả phân chia."}}},SUBSTITUTE:{description:"Thay thế một hoặc tất cả các lần xuất hiện của một chuỗi văn bản trong một chuỗi văn bản khác",abstract:"Thay thế một hoặc tất cả các lần xuất hiện của một chuỗi văn bản trong một chuỗi văn bản khác",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/substitute-%E5%87%BD%E6%95%B0-6434944f-6f07-4437-8818-68a6a1a08747"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản hoặc tham chiếu đến ô chứa văn bản mà bạn muốn thay thế bằng ký tự."},oldText:{name:"tìm kiếm văn bản",detail:"Văn bản bạn muốn thay thế."},newText:{name:"văn bản thay thế",detail:"Văn bản bạn muốn thay thế old_text."},instanceNum:{name:"chỉ định đối tượng thay thế",detail:"Chỉ định trường hợp nào của old_text bạn muốn thay thế bằng new_text. Nếu bạn chỉ định instance_num, chỉ trường hợp đó của old_text được thay thế. Nếu không, mọi trường hợp của old_text trong text sẽ được thay đổi thành new_text."}}},T:{description:"Chuyển đổi tham số thành văn bản",abstract:"Chuyển đổi tham số thành văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/t-%E5%87%BD%E6%95%B0-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"giá trị",detail:"Giá trị mà bạn muốn kiểm tra."}}},TEXT:{description:"Định dạng và chuyển đổi số thành văn bản",abstract:"Định dạng và chuyển đổi số thành văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/text-%E5%87%BD%E6%95%B0-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"giá trị",detail:"Giá trị số mà bạn muốn được chuyển đổi thành văn bản."},formatText:{name:"định dạng văn bản",detail:"Một chuỗi văn bản xác định định dạng mà bạn muốn được áp dụng cho giá trị được cung cấp."}}},TEXTAFTER:{description:"Trả về văn bản xuất hiện sau ký tự hoặc chuỗi đã cho.",abstract:"Trả về văn bản xuất hiện sau ký tự hoặc chuỗi đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/textafter-%E5%87%BD%E6%95%B0-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản bạn đang tìm kiếm bên trong. Ký tự đại diện không được phép."},delimiter:{name:"dấu tách",detail:"Văn bản đánh dấu điểm sau đó bạn muốn trích xuất."},instanceNum:{name:"số phiên bản",detail:"Phiên bản của dấu tách sau đó bạn muốn trích xuất văn bản."},matchMode:{name:"mẫu khớp",detail:"Xác định xem tìm kiếm văn bản có phân biệt chữ hoa chữ thường hay không. Mặc định là phân biệt chữ hoa, chữ thường."},matchEnd:{name:"trận đấu ở cuối",detail:"Coi phần cuối văn bản là dấu tách. Theo mặc định, văn bản là kết quả khớp chính xác."},ifNotFound:{name:"giá trị chưa khớp",detail:"Giá trị được trả về nếu không tìm thấy kết quả khớp. Theo mặc định, #N/A được trả về."}}},TEXTBEFORE:{description:"Trả về văn bản xuất hiện trước một ký tự hoặc chuỗi đã cho.",abstract:"Trả về văn bản xuất hiện trước một ký tự hoặc chuỗi đã cho.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/textbefore-%E5%87%BD%E6%95%B0-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản bạn đang tìm kiếm bên trong. Ký tự đại diện không được phép."},delimiter:{name:"dấu tách",detail:"Văn bản đánh dấu điểm sau đó bạn muốn trích xuất."},instanceNum:{name:"số phiên bản",detail:"Phiên bản của dấu tách sau đó bạn muốn trích xuất văn bản."},matchMode:{name:"mẫu khớp",detail:"Xác định xem tìm kiếm văn bản có phân biệt chữ hoa chữ thường hay không. Mặc định là phân biệt chữ hoa, chữ thường."},matchEnd:{name:"trận đấu ở cuối",detail:"Coi phần cuối văn bản là dấu tách. Theo mặc định, văn bản là kết quả khớp chính xác."},ifNotFound:{name:"giá trị chưa khớp",detail:"Giá trị được trả về nếu không tìm thấy kết quả khớp. Theo mặc định, #N/A được trả về."}}},TEXTJOIN:{description:"Kết hợp nhiều chuỗi văn bản thành một chuỗi, với dấu phân cách giữa các phần tử",abstract:"Kết hợp nhiều chuỗi văn bản thành một chuỗi, với dấu phân cách giữa các phần tử",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/textjoin-%E5%87%BD%E6%95%B0-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"dấu tách",detail:"Một chuỗi văn bản, trống hoặc có một hay nhiều ký tự nằm giữa các dấu ngoặc kép hay một tham chiếu tới một chuỗi văn bản hợp lệ."},ignoreEmpty:{name:"bỏ qua các ô trống",detail:"Nếu TRUE, hãy bỏ qua các ô trống."},text1:{name:"bản văn 1",detail:"Mục văn bản cần kết hợp. Một chuỗi văn bản hoặc xâu chuỗi, chẳng hạn như một phạm vi ô."},text2:{name:"bản văn 2",detail:"Các mục văn bản bổ sung cần kết hợp. Có thể có tối đa 252 tham đối văn bản cho các mục văn bản, bao gồm text1. Mỗi tham đối có thể là một chuỗi văn bản hoặc xâu chuỗi, chẳng hạn như phạm vi ô."}}},TEXTSPLIT:{description:"Tách chuỗi văn bản bằng cách dùng dấu tách cột và hàng.",abstract:"Tách chuỗi văn bản bằng cách dùng dấu tách cột và hàng.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/textsplit-%E5%87%BD%E6%95%B0-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản bạn muốn tách."},colDelimiter:{name:"dấu phân cách cột",detail:"Ký tự hoặc chuỗi dùng để phân chia cột."},rowDelimiter:{name:"dấu phân cách dòng",detail:"Ký tự hoặc chuỗi dùng để phân chia các hàng."},ignoreEmpty:{name:"bỏ qua các ô trống",detail:"Có bỏ qua các ô trống hay không. Mặc định là FALSE."},matchMode:{name:"mẫu khớp",detail:"Xác định xem tìm kiếm văn bản có phân biệt chữ hoa chữ thường hay không. Mặc định là phân biệt chữ hoa, chữ thường."},padWith:{name:"điền giá trị",detail:"Giá trị được sử dụng cho phần đệm. Theo mặc định, #N/A được sử dụng."}}},TRIM:{description:"Loại bỏ tất cả khoảng trống ra khỏi văn bản, chỉ để lại một khoảng trống giữa các từ.",abstract:"Xóa khoảng trắng khỏi văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/trim-%E5%87%BD%E6%95%B0-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản bạn muốn loại bỏ các khoảng trống."}}},UNICHAR:{description:"Trả về ký tự Unicode tương ứng với một số đã chỉ định",abstract:"Trả về ký tự Unicode tương ứng với một số đã chỉ định",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/unichar-%E5%87%BD%E6%95%B0-e7ffb741-824c-4e7c-bec7-59ac8ae8e43f"}],functionParameter:{number:{name:"số",detail:"Số là số Unicode biểu diễn ký tự."}}},UNICODE:{description:"Trả về số Unicode tương ứng với ký tự đầu tiên của văn bản",abstract:"Trả về số Unicode tương ứng với ký tự đầu tiên của văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/unicode-%E5%87%BD%E6%95%B0-4f8d3512-f0e5-4222-8586-f467c93b3d9a"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản là ký tự mà bạn muốn có giá trị Unicode."}}},UPPER:{description:"Chuyển đổi tất cả các chữ cái trong văn bản thành chữ hoa",abstract:"Chuyển đổi tất cả các chữ cái trong văn bản thành chữ hoa",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/upper-%E5%87%BD%E6%95%B0-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản bạn muốn chuyển đổi thành chữ hoa."}}},VALUE:{description:"Chuyển đổi chuỗi văn bản thành số",abstract:"Chuyển đổi chuỗi văn bản thành số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/value-%E5%87%BD%E6%95%B0-d49bc6c1-c29b-44db-927b-11e7c34dd6ea"}],functionParameter:{text:{name:"bản văn",detail:"Văn bản được đặt trong dấu ngoặc kép hoặc tham chiếu đến ô chứa văn bản bạn muốn chuyển đổi."}}},VALUETOTEXT:{description:"Trả về văn bản từ bất kỳ giá trị nào được chỉ định.",abstract:"Trả về văn bản từ bất kỳ giá trị nào được chỉ định.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/valuetotext-%E5%87%BD%E6%95%B0-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"giá trị",detail:"Giá trị cần trả về dưới dạng văn bản."},format:{name:"Định dạng của dữ",detail:`Định dạng của dữ liệu trả về. Nó có thể là một trong hai giá trị: +0 Mặc định. Định dạng ngắn gọn dễ đọc. +1 Định dạng nghiêm ngặt bao gồm ký tự thoát và dấu tách hàng. Tạo một chuỗi có thể được phân tích khi nhập vào thanh công thức. Đóng gói các chuỗi trả về trong dấu ngoặc kép, ngoại trừ Booleans, Numbers và Errors.`}}}},...{AND:{description:"Returns TRUE if all of its arguments are TRUE",abstract:"Returns TRUE if all of its arguments are TRUE",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/and-%E5%87%BD%E6%95%B0-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"Giá trị logic 1",detail:"Điều kiện đầu tiên muốn kiểm tra và có thể là TRUE hoặc FALSE."},logical2:{name:"Giá trị logic 2",detail:"Các điều kiện khác muốn kiểm tra và có thể là TRUE hoặc FALSE (tối đa 255 điều kiện)."}}},BYCOL:{description:"Áp dụng LAMBDA cho mỗi cột và trả về một mảng kết quả",abstract:"Áp dụng LAMBDA cho mỗi cột và trả về một mảng kết quả",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bycol-%E5%87%BD%E6%95%B0-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"mảng",detail:"Mảng được phân tách bởi cột."},lambda:{name:"lambda",detail:"Hàm LAMBDA nhận một cột làm tham số đơn và tính toán một kết quả. LAMBDA có một tham số duy nhất: Một cột từ mảng."}}},BYROW:{description:"Áp dụng LAMBDA cho mỗi hàng và trả về một mảng kết quả",abstract:"Áp dụng LAMBDA cho mỗi hàng và trả về một mảng kết quả",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/byrow-%E5%87%BD%E6%95%B0-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"mảng",detail:"Mảng được phân tách theo hàng."},lambda:{name:"lambda",detail:"Hàm LAMBDA nhận một hàng làm tham số duy nhất và tính toán một kết quả. LAMBDA có một tham số duy nhất: Một hàng từ mảng."}}},FALSE:{description:"Trả về giá trị logic FALSE",abstract:"Trả về giá trị logic FALSE",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/false-%E5%87%BD%E6%95%B0-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"Xác định kiểm tra logic để thực hiện",abstract:"Xác định kiểm tra logic để thực hiện",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/if-%E5%87%BD%E6%95%B0-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"Biểu thức logic",detail:"Điều kiện cần kiểm tra."},valueIfTrue:{name:"Nếu giá trị là đúng",detail:"Giá trị bạn muốn trả về nếu kết quả của logical_test là TRUE."},valueIfFalse:{name:"Nếu giá trị là sai",detail:"Giá trị bạn muốn trả về nếu kết quả của logical_test là FALSE."}}},IFERROR:{description:"Nếu kết quả tính toán của công thức là lỗi, trả về giá trị bạn chỉ định; nếu không, trả về kết quả của công thức",abstract:"Nếu kết quả tính toán của công thức là lỗi, trả về giá trị bạn chỉ định; nếu không, trả về kết quả của công thức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/iferror-%E5%87%BD%E6%95%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"Giá trị",detail:"Tham số để kiểm tra lỗi."},valueIfError:{name:"Trả về giá trị khi có lỗi",detail:"Giá trị trả về khi kết quả tính toán của công thức là lỗi. Đánh giá các loại lỗi sau: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? hoặc #NULL!."}}},IFNA:{description:"Nếu biểu thức này giải mã là #N/A, trả về giá trị được chỉ định; nếu không, trả về kết quả của biểu thức đó",abstract:"Nếu biểu thức này giải mã là #N/A, trả về giá trị được chỉ định; nếu không, trả về kết quả của biểu thức đó",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/ifna-%E5%87%BD%E6%95%B0-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"Giá trị",detail:"Đối số được kiểm tra cho giá trị lỗi #N/A."},valueIfNa:{name:"Nếu đó là giá trị của #N/A",detail:"Giá trị cần trả về nếu công thức cho kết quả là giá trị lỗi #N/A."}}},IFS:{description:"Kiểm tra nếu một hoặc nhiều điều kiện được đáp ứng và trả về giá trị tương ứng với điều kiện TRUE đầu tiên.",abstract:"Kiểm tra nếu một hoặc nhiều điều kiện được đáp ứng và trả về giá trị tương ứng với điều kiện TRUE đầu tiên.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/ifs-%E5%87%BD%E6%95%B0-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"logic 1",detail:"Điều kiện đầu tiên được đánh giá, có thể là giá trị Boolean, giá trị số, mảng hoặc tham chiếu đến một trong các giá trị này."},valueIfTrue1:{name:"Giá trị 1",detail:'Giá trị được trả về khi "Điều kiện 1" là "TRUE".'},logicalTest2:{name:"logic 2",detail:"Các điều kiện khác được đánh giá trước điều kiện trước đó là FALSE."},valueIfTrue2:{name:"Giá trị 2",detail:'Giá trị bổ sung được trả về nếu điều kiện tương ứng là "TRUE".'}}},LAMBDA:{description:"Sử dụng chức năng LAMBDA để tạo hàm tùy chỉnh có thể tái sử dụng và gọi chúng bằng tên dễ nhớ. Các hàm mới có sẵn trên toàn bộ workbook và gọi giống như hàm gốc của Excel.",abstract:"Tạo các hàm tùy chỉnh, có thể tái sử dụng và gọi chúng bằng tên thân thiện",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/lambda-%E5%87%BD%E6%95%B0-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"Tham số",detail:"Giá trị để truyền vào hàm, ví dụ như tham chiếu ô, chuỗi hoặc số. Có thể nhập tối đa 253 tham số. Tham số này là tùy chọn."},calculation:{name:"Tính toán",detail:"Công thức để thực hiện và trả về kết quả của hàm. Phải là tham số cuối cùng và phải trả về kết quả. Tham số này là bắt buộc."}}},LET:{description:"Gán tên cho kết quả tính toán",abstract:"Gán tên cho kết quả tính toán",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/let-%E5%87%BD%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"tên 1",detail:"Tên đầu tiên cần phải gán. Phải bắt đầu bằng một chữ cái. Không thể là kết quả của công thức hoặc xung đột với cú pháp dải ô."},nameValue1:{name:"giá trị 1",detail:"Giá trị gán cho name1."},calculationOrName2:{name:"tính toán hoặc tên 2",detail:`Một trong những điều sau: +1.Phép tính sử dụng tất cả các tên trong hàm LET. Đây phải là đối số cuối cùng trong hàm LET. +2.Tên thứ hai cần gán cho name_value thứ hai. Nếu tên đã được xác định, name_value2 và calculation_or_name3 sẽ trở thành bắt buộc.`},nameValue2:{name:"giá trị 2",detail:"Giá trị gán cho calculation_or_name2."},calculationOrName3:{name:"tính toán hoặc tên 3",detail:`Một trong những điều sau: +1.Phép tính sử dụng tất cả các tên trong hàm LET. Đối số cuối cùng trong hàm LET phải là một phép tính. +2.Tên thứ ba cần gán cho name_value thứ ba. Nếu tên đã được xác định, name_value3 và calculation_or_name4 sẽ trở thành bắt buộc.`}}},MAKEARRAY:{description:"Trả về một mảng có kích thước hàng và cột chỉ định bằng cách áp dụng LAMBDA",abstract:"Trả về một mảng có kích thước hàng và cột chỉ định bằng cách áp dụng LAMBDA",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/makearray-%E5%87%BD%E6%95%B0-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"Số hàng",detail:"Số hàng trong mảng. Phải lớn hơn không"},number2:{name:"Số cột",detail:"Số cột trong mảng. Phải lớn hơn không"},value3:{name:"lambda",detail:"Gọi LAMBDA để tạo mảng. LAMBDA nhận hai tham số: row chỉ mục hàng của mảng, col chỉ mục cột của mảng"}}},MAP:{description:"Trả về một mảng được hình thành bằng cách ánh xạ mỗi giá trị trong (các) mảng với một giá trị mới bằng cách áp dụng lambda để tạo một giá trị mới.",abstract:"Trả về một mảng được hình thành bằng cách ánh xạ mỗi giá trị trong (các) mảng với một giá trị mới bằng cách áp dụng lambda để tạo một giá trị mới.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/map-%E5%87%BD%E6%95%B0-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"mảng1",detail:"Một mảng1 cần ánh xạ."},array2:{name:"mảng2",detail:"Một mảng2 cần ánh xạ."},lambda:{name:"lambda",detail:"Một LAMBDA phải là đối số cuối cùng và phải có tham số cho mỗi mảng được truyền."}}},NOT:{description:"Lấy giá trị logic ngược lại của tham số",abstract:"Lấy giá trị logic ngược lại của tham số",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/not-%E5%87%BD%E6%95%B0-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"biểu thức logic",detail:"Điều kiện mà bạn muốn đảo ngược logic có thể đánh giá là TRUE hoặc FALSE."}}},OR:{description:"Nếu bất kỳ tham số nào của hàm OR tính là TRUE, trả về TRUE; nếu tất cả tham số tính là FALSE, trả về FALSE.",abstract:"Nếu bất kỳ tham số nào là TRUE, trả về TRUE",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/or-%E5%87%BD%E6%95%B0-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"Biểu thức logic 1",detail:"Điều kiện đầu tiên muốn kiểm tra và có thể là TRUE hoặc FALSE."},logical2:{name:"Biểu thức logic 2",detail:"Các điều kiện khác muốn kiểm tra và có thể là TRUE hoặc FALSE (tối đa 255 điều kiện)."}}},REDUCE:{description:"Giảm mảng thành giá trị tích lũy bằng cách áp dụng LAMBDA cho mỗi giá trị và trả về tổng trong bộ tích lũy",abstract:"Giảm mảng thành giá trị tích lũy bằng cách áp dụng LAMBDA cho mỗi giá trị và trả về tổng trong bộ tích lũy",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/reduce-%E5%87%BD%E6%95%B0-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"giá trị bắt đầu cho",detail:"Đặt giá trị bắt đầu cho bộ tích lũy."},array:{name:"mảng",detail:"Một mảng cần giảm."},lambda:{name:"lambda",detail:"Một LAMBDA được gọi là giảm mảng. LAMBDA có ba thông số: 1.Giá trị được tính tổng và trả về là kết quả cuối cùng. 2.Giá trị hiện tại từ mảng. 3.Phép tính được áp dụng cho từng thành phần trong mảng."}}},SCAN:{description:"Quét mảng bằng cách áp dụng LAMBDA cho mỗi giá trị và trả về một mảng chứa các giá trị trung gian",abstract:"Quét mảng bằng cách áp dụng LAMBDA cho mỗi giá trị và trả về một mảng chứa các giá trị trung gian",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/scan-%E5%87%BD%E6%95%B0-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"giá trị bắt đầu cho",detail:"Đặt giá trị bắt đầu cho bộ tích lũy."},array:{name:"mảng",detail:"Một mảng cần quét."},lambda:{name:"lambda",detail:"Một LAMBDA được gọi là quét mảng. LAMBDA có ba thông số: 1.Giá trị được tính tổng và trả về là kết quả cuối cùng. 2.Giá trị hiện tại từ mảng. 3.Phép tính được áp dụng cho từng thành phần trong mảng."}}},SWITCH:{description:"Đánh giá một biểu thức dựa trên danh sách các giá trị và trả về kết quả tương ứng với giá trị đầu tiên khớp. Nếu không khớp, có thể trả về giá trị mặc định tùy chọn.",abstract:"Đánh giá một biểu thức dựa trên danh sách các giá trị và trả về kết quả tương ứng với giá trị đầu tiên khớp. Nếu không khớp, có thể trả về giá trị mặc định tùy chọn.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/switch-%E5%87%BD%E6%95%B0-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"Sự biểu lộ",detail:"Biểu thức là một giá trị (chẳng hạn như số, ngày hoặc một số văn bản) được so sánh với value1…value126."},value1:{name:"Giá trị 1",detail:"Giá trị N là giá trị được so sánh với biểu thức."},result1:{name:"Kết quả 1",detail:"Kết quả N là giá trị được trả về khi tham số giá trị N tương ứng khớp với biểu thức. Một kết quả N phải được cung cấp cho mỗi đối số N có giá trị tương ứng."},defaultOrValue2:{name:"Mặc định hoặc giá trị 2",detail:"Giá trị mặc định là giá trị được trả về nếu không tìm thấy kết quả khớp nào trong biểu thức giá trị N. Các tham số mặc định được xác định bằng cách không có biểu thức N kết quả tương ứng (xem ví dụ). Mặc định phải là tham số cuối cùng trong hàm."},result2:{name:"Kết quả 2",detail:"Kết quả N là giá trị được trả về khi tham số giá trị N tương ứng khớp với biểu thức. Một kết quả N phải được cung cấp cho mỗi đối số N có giá trị tương ứng."}}},TRUE:{description:"Trả về giá trị logic TRUE",abstract:"Trả về giá trị logic TRUE",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/true-%E5%87%BD%E6%95%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Trả về giá trị logic XOR của tất cả các tham số",abstract:"Trả về giá trị logic XOR của tất cả các tham số",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/xor-%E5%87%BD%E6%95%B0-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"Biểu thức logic 1",detail:"Điều kiện đầu tiên muốn kiểm tra và có thể là TRUE hoặc FALSE."},logical2:{name:"Biểu thức logic 2",detail:"Các điều kiện khác muốn kiểm tra và có thể là TRUE hoặc FALSE (tối đa 255 điều kiện)."}}}},...{CELL:{description:"Hàm CELL trả về thông tin về định dạng, vị trí hay nội dung của một ô.",abstract:"Hàm CELL trả về thông tin về định dạng, vị trí hay nội dung của một ô.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cell-%E5%87%BD%E6%95%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"Kiểu thông tin",detail:"Giá trị văn bản xác định bạn muốn trả về kiểu thông tin ô nào."},reference:{name:"Trích dẫn",detail:"Ô mà bạn muốn có thông tin."}}},ERROR_TYPE:{description:"Trả về số tương ứng với loại lỗi",abstract:"Trả về số tương ứng với loại lỗi",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/error-type-%E5%87%BD%E6%95%B0-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"Giá trị lỗi",detail:"Giá trị lỗi có số nhận dạng mà bạn muốn tìm."}}},ISBETWEEN:{description:"Kiểm tra xem một số đã cho có nằm giữa hai số khác",abstract:"Kiểm tra xem một số đã cho có nằm giữa hai số khác",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/10538337?hl=vi&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"giá_trị_muốn_so_sánh",detail:"Giá trị muốn kiểm tra khi nằm trong khoảng từ `giới_hạn_dưới` đến `giới_hạn_trên`."},lowerValue:{name:"giới_hạn_dưới",detail:"Cận dưới của miền giá trị mà `giá_trị_muốn_so_sánh` có thể thuộc miền đó."},upperValue:{name:"giới_hạn_trên",detail:"Cận trên của miền giá trị mà `giá_trị_muốn_so_sánh` có thể thuộc miền đó."},lowerValueIsInclusive:{name:"bao_gồm_cả_giới_hạn_dưới",detail:"Liệu miền giá trị có bao gồm `giới_hạn_trên` hay không. Theo mặc định, hàm sẽ trả về TRUE."},upperValueIsInclusive:{name:"bao_gồm_cả_giới_hạn_trên",detail:"Liệu miền giá trị có bao gồm `giới_hạn_trên` hay không. Theo mặc định, hàm sẽ trả về TRUE."}}},ISBLANK:{description:"Trả về TRUE nếu giá trị trống",abstract:"Trả về TRUE nếu giá trị trống",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISDATE:{description:"xác định xem một giá trị có phải là ngày không.",abstract:"xác định xem một giá trị có phải là ngày không.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/9061381?hl=vi&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị cần xác minh có phải là một ngày hay không."}}},ISEMAIL:{description:"Tra xem một giá trị có phải là địa chỉ email hợp lệ hay không bằng.",abstract:"Tra xem một giá trị có phải là địa chỉ email hợp lệ hay không bằng.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3256503?hl=vi&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị được xác minh là một địa chỉ email."}}},ISERR:{description:"Trả về TRUE nếu giá trị là bất kỳ giá trị lỗi nào ngoại trừ #N/A",abstract:"Trả về TRUE nếu giá trị là bất kỳ giá trị lỗi nào ngoại trừ #N/A",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISERROR:{description:"Trả về TRUE nếu giá trị là bất kỳ giá trị lỗi nào",abstract:"Trả về TRUE nếu giá trị là bất kỳ giá trị lỗi nào",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISEVEN:{description:"Trả về TRUE nếu số chắn, trả về FALSE nếu số lẻ.",abstract:"Trả về TRUE nếu số chắn, trả về FALSE nếu số lẻ.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/iseven-%E5%87%BD%E6%95%B0-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị cần kiểm tra. Nếu số không phải là số nguyên thì nó bị cắt cụt."}}},ISFORMULA:{description:"Kiểm tra xem liệu có tham chiếu đến ô chứa công thức hay không và trả về kết quả TRUE hoặc FALSE.",abstract:"Kiểm tra xem liệu có tham chiếu đến ô chứa công thức hay không và trả về kết quả TRUE hoặc FALSE.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/isformula-%E5%87%BD%E6%95%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"tham chiếu",detail:"Tham chiếu là tham chiếu đến ô mà bạn muốn kiểm tra."}}},ISLOGICAL:{description:"Trả về TRUE nếu giá trị là giá trị logic",abstract:"Trả về TRUE nếu giá trị là giá trị logic",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISNA:{description:"Trả về TRUE nếu giá trị là giá trị lỗi #N/A",abstract:"Trả về TRUE nếu giá trị là giá trị lỗi #N/A",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISNONTEXT:{description:"Trả về TRUE nếu giá trị không phải là văn bản",abstract:"Trả về TRUE nếu giá trị không phải là văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISNUMBER:{description:"Trả về TRUE nếu giá trị là số",abstract:"Trả về TRUE nếu giá trị là số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISODD:{description:"Trả về TRUE nếu số lẻ, trả về FALSE nếu số chẵn.",abstract:"Trả về TRUE nếu số lẻ, trả về FALSE nếu số chẵn.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/isodd-%E5%87%BD%E6%95%B0-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị cần kiểm tra. Nếu số không phải là số nguyên thì nó bị cắt cụt."}}},ISREF:{description:"Trả về TRUE nếu giá trị là tham chiếu",abstract:"Trả về TRUE nếu giá trị là tham chiếu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISTEXT:{description:"Trả về TRUE nếu giá trị là văn bản",abstract:"Trả về TRUE nếu giá trị là văn bản",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị mà bạn muốn kiểm tra. Đối số giá trị có thể là trống (ô trống), lỗi, giá trị lô-gic, văn bản, số, giá trị tham chiếu hoặc tên tham chiếu tới bất kỳ giá trị nào trong những giá trị này."}}},ISURL:{description:"Kiểm tra liệu giá trị có phải là một URL hợp lệ.",abstract:"Kiểm tra liệu giá trị có phải là một URL hợp lệ.",links:[{title:"Hướng dẫn",url:"https://support.google.com/docs/answer/3256501?hl=vi&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"Giá trị",detail:"Giá trị được xác minh là một URL."}}},N:{description:"Trả về một giá trị được chuyển đổi thành số.",abstract:"Trả về một giá trị được chuyển đổi thành số.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/n-%E5%87%BD%E6%95%B0-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"giá trị",detail:"Giá trị mà bạn muốn chuyển đổi."}}},NA:{description:"Trả về giá trị lỗi #N/A.",abstract:"Trả về giá trị lỗi #N/A.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/na-%E5%87%BD%E6%95%B0-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Trả về số trang của trang tham chiếu.",abstract:"Trả về số trang của trang tham chiếu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sheet-%E5%87%BD%E6%95%B0-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"giá trị",detail:"là tên của một trang hoặc một tham chiếu mà bạn muốn tìm số trang của nó. Nếu đối số value được bỏ qua, hàm SHEET trả về số trang của trang có chứa hàm."}}},SHEETS:{description:"Trả về số trang tính trong một bảng tính",abstract:"Trả về số trang tính trong một bảng tính",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/sheets-%E5%87%BD%E6%95%B0-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Trả về một số đại diện cho kiểu dữ liệu của giá trị",abstract:"Trả về một số đại diện cho kiểu dữ liệu của giá trị",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/type-%E5%87%BD%E6%95%B0-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"Giá trị",detail:"Nó có thể là bất kỳ giá trị nào, chẳng hạn như số, văn bản, giá trị logic, v.v."}}}},...{BESSELI:{description:"Trả về hàm Bessel sửa đổi In(x)",abstract:"Trả về hàm Bessel sửa đổi In(x)",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/besseli-%E5%87%BD%E6%95%B0-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"Giá trị để đánh giá hàm."},n:{name:"N",detail:"Bậc của hàm Bessel. Nếu n không phải là số nguyên thì nó bị cắt cụt."}}},BESSELJ:{description:"Trả về hàm Bessel Jn(x)",abstract:"Trả về hàm Bessel Jn(x)",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/besselj-%E5%87%BD%E6%95%B0-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"Giá trị để đánh giá hàm."},n:{name:"N",detail:"Bậc của hàm Bessel. Nếu n không phải là số nguyên thì nó bị cắt cụt."}}},BESSELK:{description:"Trả về hàm Bessel sửa đổi Kn(x)",abstract:"Trả về hàm Bessel sửa đổi Kn(x)",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/besselk-%E5%87%BD%E6%95%B0-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"Giá trị để đánh giá hàm."},n:{name:"N",detail:"Bậc của hàm Bessel. Nếu n không phải là số nguyên thì nó bị cắt cụt."}}},BESSELY:{description:"Trả về hàm Bessel Yn(x)",abstract:"Trả về hàm Bessel Yn(x)",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bessely-%E5%87%BD%E6%95%B0-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"Giá trị để đánh giá hàm."},n:{name:"N",detail:"Bậc của hàm Bessel. Nếu n không phải là số nguyên thì nó bị cắt cụt."}}},BIN2DEC:{description:"Chuyển đổi số nhị phân thành số thập phân",abstract:"Chuyển đổi số nhị phân thành số thập phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bin2dec-%E5%87%BD%E6%95%B0-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"Số nhị phân",detail:"Số nhị phân mà bạn muốn chuyển đổi."}}},BIN2HEX:{description:"Chuyển đổi số nhị phân thành số thập lục phân",abstract:"Chuyển đổi số nhị phân thành số thập lục phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bin2hex-%E5%87%BD%E6%95%B0-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"Số nhị phân",detail:"Số nhị phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},BIN2OCT:{description:"Chuyển đổi số nhị phân thành số bát phân",abstract:"Chuyển đổi số nhị phân thành số bát phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bin2oct-%E5%87%BD%E6%95%B0-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"Số nhị phân",detail:"Số nhị phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},BITAND:{description:"Trả về phép 'và' theo bit của hai số",abstract:"Trả về phép 'và' theo bit của hai số",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bitand-%E5%87%BD%E6%95%B0-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"Giá trị 1",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."},number2:{name:"Giá trị 2",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."}}},BITLSHIFT:{description:"Trả về giá trị tính toán của số nhận được bằng cách dịch chuyển sang trái shift_amount bit",abstract:"Trả về giá trị tính toán của số nhận được bằng cách dịch chuyển sang trái shift_amount bit",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bitlshift-%E5%87%BD%E6%95%B0-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"giá trị số",detail:"phải là số nguyên lớn hơn hoặc bằng 0."},shiftAmount:{name:"Số tiền ca",detail:"phải là số nguyên."}}},BITOR:{description:"Trả về phép 'hoặc' theo bit của hai số",abstract:"Trả về phép 'hoặc' theo bit của hai số",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bitor-%E5%87%BD%E6%95%B0-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"Giá trị 1",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."},number2:{name:"Giá trị 2",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."}}},BITRSHIFT:{description:"Trả về giá trị tính toán của số nhận được bằng cách dịch chuyển sang phải shift_amount bit",abstract:"Trả về giá trị tính toán của số nhận được bằng cách dịch chuyển sang phải shift_amount bit",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bitrshift-%E5%87%BD%E6%95%B0-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"giá trị số",detail:"phải là số nguyên lớn hơn hoặc bằng 0."},shiftAmount:{name:"Số tiền ca",detail:"phải là số nguyên."}}},BITXOR:{description:"Trả về phép 'xor' theo bit của hai số",abstract:"Trả về phép 'xor' theo bit của hai số",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/bitxor-%E5%87%BD%E6%95%B0-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"Giá trị 1",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."},number2:{name:"Giá trị 2",detail:"Phải là dạng thập phân và lớn hơn hoặc bằng 0."}}},COMPLEX:{description:"Chuyển đổi hệ số thực và hệ số ảo thành số phức",abstract:"Chuyển đổi hệ số thực và hệ số ảo thành số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/complex-%E5%87%BD%E6%95%B0-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"hệ số thực",detail:"Hệ số thực của số phức."},iNum:{name:"hệ số ảo",detail:"Hệ số ảo của số phức."},suffix:{name:"hậu tố",detail:'Hậu tố cho thành phần ảo của số phức. Nếu bị bỏ qua, hậu tố được giả định là "i".'}}},CONVERT:{description:"Chuyển đổi số từ hệ đo lường này sang hệ đo lường khác",abstract:"Chuyển đổi số từ hệ đo lường này sang hệ đo lường khác",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/convert-%E5%87%BD%E6%95%B0-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"giá trị số",detail:"Giá trị cần chuyển đổi."},fromUnit:{name:"Đơn vị trước khi chuyển đổi",detail:"là đơn vị của giá trị số."},toUnit:{name:"Đơn vị chuyển đổi",detail:"là đơn vị của kết quả."}}},DEC2BIN:{description:"Chuyển đổi số thập phân thành số nhị phân",abstract:"Chuyển đổi số thập phân thành số nhị phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/dec2bin-%E5%87%BD%E6%95%B0-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"Số thập phân",detail:"Số nguyên thập phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},DEC2HEX:{description:"Chuyển đổi số thập phân thành số thập lục phân",abstract:"Chuyển đổi số thập phân thành số thập lục phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/dec2hex-%E5%87%BD%E6%95%B0-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"Số thập phân",detail:"Số nguyên thập phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},DEC2OCT:{description:"Chuyển đổi số thập phân thành số bát phân",abstract:"Chuyển đổi số thập phân thành số bát phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/dec2oct-%E5%87%BD%E6%95%B0-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"Số thập phân",detail:"Số nguyên thập phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},DELTA:{description:"Kiểm tra hai giá trị có bằng nhau không",abstract:"Kiểm tra hai giá trị có bằng nhau không",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/delta-%E5%87%BD%E6%95%B0-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"giá trị số 1",detail:"Số thứ nhất."},number2:{name:"giá trị số 2",detail:"Số thứ hai. Nếu bị bỏ qua, number2 được cho là bằng không."}}},ERF:{description:"Trả về hàm lỗi",abstract:"Trả về hàm lỗi",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/erf-%E5%87%BD%E6%95%B0-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"Giơi hạn dươi",detail:"Giới hạn dưới để lấy tích phân hàm ERF."},upperLimit:{name:"giới hạn trên",detail:"Giới hạn trên để lấy tích phân hàm ERF. Nếu bị bỏ qua, hàm ERF lấy tích phân giữa số không và lower_limit."}}},ERF_PRECISE:{description:"Trả về hàm lỗi",abstract:"Trả về hàm lỗi",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/erf-precise-%E5%87%BD%E6%95%B0-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"Giơi hạn dươi",detail:"Giới hạn dưới để lấy tích phân hàm ERF.PRECISE."}}},ERFC:{description:"Trả về hàm lỗi bổ sung",abstract:"Trả về hàm lỗi bổ sung",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/erfc-%E5%87%BD%E6%95%B0-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"Giơi hạn dươi",detail:"Giới hạn dưới để lấy tích phân hàm ERFC."}}},ERFC_PRECISE:{description:"Trả về hàm ERF bổ sung từ x đến vô cực",abstract:"Trả về hàm ERF bổ sung từ x đến vô cực",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/erfc-precise-%E5%87%BD%E6%95%B0-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"Giơi hạn dươi",detail:"Giới hạn dưới để lấy tích phân hàm ERFC.PRECISE."}}},GESTEP:{description:"Kiểm tra số có lớn hơn ngưỡng không",abstract:"Kiểm tra số có lớn hơn ngưỡng không",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/gestep-%E5%87%BD%E6%95%B0-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"số",detail:"Giá trị để kiểm tra bước."},step:{name:"ngưỡng",detail:"Giá trị ngưỡng. Nếu bạn bỏ qua giá trị của bước, hàm GESTEP sẽ dùng số 0."}}},HEX2BIN:{description:"Chuyển đổi số thập lục phân thành số nhị phân",abstract:"Chuyển đổi số thập lục phân thành số nhị phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/hex2bin-%E5%87%BD%E6%95%B0-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"số thập lục phân",detail:"Số thập lục phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},HEX2DEC:{description:"Chuyển đổi số thập lục phân thành số thập phân",abstract:"Chuyển đổi số thập lục phân thành số thập phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/hex2dec-%E5%87%BD%E6%95%B0-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"số thập lục phân",detail:"Số thập lục phân mà bạn muốn chuyển đổi."}}},HEX2OCT:{description:"Chuyển đổi số thập lục phân thành số bát phân",abstract:"Chuyển đổi số thập lục phân thành số bát phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/hex2oct-%E5%87%BD%E6%95%B0-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"số thập lục phân",detail:"Số thập lục phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},IMABS:{description:"Trả về giá trị tuyệt đối (môđun) của số phức",abstract:"Trả về giá trị tuyệt đối (môđun) của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imabs-%E5%87%BD%E6%95%B0-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm giá trị tuyệt đối của nó."}}},IMAGINARY:{description:"Trả về hệ số ảo của số phức",abstract:"Trả về hệ số ảo của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imaginary-%E5%87%BD%E6%95%B0-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm hệ số ảo của nó."}}},IMARGUMENT:{description:"Trả về tham số theta, tức là góc được biểu diễn bằng radian",abstract:"Trả về tham số theta, tức là góc được biểu diễn bằng radian",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imargument-%E5%87%BD%E6%95%B0-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm đối số theta."}}},IMCONJUGATE:{description:"Trả về số phức liên hợp của số phức",abstract:"Trả về số phức liên hợp của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imconjugate-%E5%87%BD%E6%95%B0-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm số liên hợp của nó."}}},IMCOS:{description:"Trả về cosine của số phức",abstract:"Trả về cosine của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imcos-%E5%87%BD%E6%95%B0-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm cosin của nó."}}},IMCOSH:{description:"Trả về hyperbolic cosine của số phức",abstract:"Trả về hyperbolic cosine của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imcosh-%E5%87%BD%E6%95%B0-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy cosin hyperbolic."}}},IMCOT:{description:"Trả về cotangent của số phức",abstract:"Trả về cotangent của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imcot-%E5%87%BD%E6%95%B0-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy cotangent."}}},IMCOTH:{description:"Trả về hyperbolic cotangent của số phức",abstract:"Trả về hyperbolic cotangent của số phức",links:[{title:"Giảng dạy",url:"https://support.google.com/docs/answer/9366256?hl=vi&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy hyperbolic cotangent."}}},IMCSC:{description:"Trả về cosecant của số phức",abstract:"Trả về cosecant của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imcsc-%E5%87%BD%E6%95%B0-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy cosecant."}}},IMCSCH:{description:"Trả về hyperbolic cosecant của số phức",abstract:"Trả về hyperbolic cosecant của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imcsch-%E5%87%BD%E6%95%B0-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy hyperbolic cosecant."}}},IMDIV:{description:"Trả về thương của hai số phức",abstract:"Trả về thương của hai số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imdiv-%E5%87%BD%E6%95%B0-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"tử số phức",detail:"Số bị chia hoặc tử số phức."},inumber2:{name:"mẫu số phức",detail:"Ước số hoặc mẫu số phức."}}},IMEXP:{description:"Trả về exponent của số phức",abstract:"Trả về exponent của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imexp-%E5%87%BD%E6%95%B0-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm hàm mũ của nó."}}},IMLN:{description:"Trả về logarithm tự nhiên của số phức",abstract:"Trả về logarithm tự nhiên của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imln-%E5%87%BD%E6%95%B0-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm lô-ga-rit tự nhiên của nó."}}},IMLOG:{description:"Trả về logarithm của một số phức với cơ số xác định.",abstract:"Trả về logarithm của một số phức với cơ số xác định.",links:[{title:"Giảng dạy",url:"https://support.google.com/docs/answer/9366486?hl=vi&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"số phức",detail:"Một số phức có logarit theo một cơ số cụ thể cần được tính."},base:{name:"cơ số",detail:"Cơ số cần sử dụng khi tính lôgarit."}}},IMLOG10:{description:"Trả về logarithm cơ số 10 của số phức",abstract:"Trả về logarithm cơ số 10 của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imlog10-%E5%87%BD%E6%95%B0-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm lô-ga-rit thập phân của nó."}}},IMLOG2:{description:"Trả về logarithm cơ số 2 của số phức",abstract:"Trả về logarithm cơ số 2 của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imlog2-%E5%87%BD%E6%95%B0-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm lô-ga-rit cơ số 2 của nó."}}},IMPOWER:{description:"Trả về lũy thừa của một số phức với số nguyên",abstract:"Trả về lũy thừa của một số phức với số nguyên",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/impower-%E5%87%BD%E6%95%B0-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"số phức",detail:"Một số phức mà bạn muốn nâng lên theo một lũy thừa."},number:{name:"số",detail:"Lũy thừa mà bạn muốn nâng số phức lên theo đó."}}},IMPRODUCT:{description:"Trả về tích của nhiều số phức",abstract:"Trả về tích của nhiều số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/improduct-%E5%87%BD%E6%95%B0-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"số phức 1",detail:"1 tới 255 số phức cần nhân với nhau."},inumber2:{name:"số phức 2",detail:"1 tới 255 số phức cần nhân với nhau."}}},IMREAL:{description:"Trả về phần thực của số phức",abstract:"Trả về phần thực của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imreal-%E5%87%BD%E6%95%B0-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm hệ số thực của nó."}}},IMSEC:{description:"Trả về giá trị sec của số phức",abstract:"Trả về giá trị sec của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsec-%E5%87%BD%E6%95%B0-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy sec."}}},IMSECH:{description:"Trả về giá trị sech của số phức",abstract:"Trả về giá trị sech của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsech-%E5%87%BD%E6%95%B0-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy sech."}}},IMSIN:{description:"Trả về sin của số phức",abstract:"Trả về sin của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsin-%E5%87%BD%E6%95%B0-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy sin."}}},IMSINH:{description:"Trả về giá trị sinh của số phức",abstract:"Trả về giá trị sinh của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsinh-%E5%87%BD%E6%95%B0-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy sinh."}}},IMSQRT:{description:"Trả về căn bậc hai của số phức",abstract:"Trả về căn bậc hai của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsqrt-%E5%87%BD%E6%95%B0-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn tìm căn bậc hai của nó."}}},IMSUB:{description:"Trả về hiệu của hai số phức",abstract:"Trả về hiệu của hai số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsub-%E5%87%BD%E6%95%B0-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"số phức 1",detail:"số phức 1."},inumber2:{name:"số phức 2",detail:"số phức 2."}}},IMSUM:{description:"Trả về tổng của nhiều số phức",abstract:"Trả về tổng của nhiều số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imsum-%E5%87%BD%E6%95%B0-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"số phức 1",detail:"1 tới 255 số phức cần cộng với nhau."},inumber2:{name:"số phức 2",detail:"1 tới 255 số phức cần cộng với nhau."}}},IMTAN:{description:"Trả về tan của số phức",abstract:"Trả về tan của số phức",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/imtan-%E5%87%BD%E6%95%B0-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy tan."}}},IMTANH:{description:"Trả về tanh của số phức",abstract:"Trả về tanh của số phức",links:[{title:"Giảng dạy",url:"https://support.google.com/docs/answer/9366655?hl=vi&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"số phức",detail:"Số phức mà bạn muốn lấy tanh."}}},OCT2BIN:{description:"Chuyển đổi số bát phân thành số nhị phân",abstract:"Chuyển đổi số bát phân thành số nhị phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/oct2bin-%E5%87%BD%E6%95%B0-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"Số bát phân",detail:"Số bát phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}},OCT2DEC:{description:"Chuyển đổi số bát phân thành số thập phân",abstract:"Chuyển đổi số bát phân thành số thập phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/oct2dec-%E5%87%BD%E6%95%B0-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"Số bát phân",detail:"Số bát phân mà bạn muốn chuyển đổi."}}},OCT2HEX:{description:"Chuyển đổi số bát phân thành số mười lăm phân",abstract:"Chuyển đổi số bát phân thành số mười lăm phân",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/oct2hex-%E5%87%BD%E6%95%B0-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"Số bát phân",detail:"Số bát phân mà bạn muốn chuyển đổi."},places:{name:"Số ký tự",detail:"Số ký tự sử dụng."}}}},...{CUBEKPIMEMBER:{description:"Trả về các thuộc tính của Chỉ số Hiệu suất Chính (KPI) và hiển thị tên KPI trong ô. KPI là một thước đo có thể đo lường để theo dõi hiệu suất của đơn vị, như tổng lợi nhuận hàng tháng hoặc sự điều chỉnh của nhân viên hàng quý.",abstract:"Trả về các thuộc tính của Chỉ số Hiệu suất Chính (KPI) và hiển thị tên KPI trong ô. KPI là một thước đo có thể đo lường để theo dõi hiệu suất của đơn vị, như tổng lợi nhuận hàng tháng hoặc sự điều chỉnh của nhân viên hàng quý.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubekpimember-%E5%87%BD%E6%95%B0-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBEMEMBER:{description:"Trả về thành viên hoặc tuple trong tập dữ liệu. Sử dụng để xác minh thành viên hoặc tuple có tồn tại trong tập dữ liệu hay không.",abstract:"Trả về thành viên hoặc tuple trong tập dữ liệu. Sử dụng để xác minh thành viên hoặc tuple có tồn tại trong tập dữ liệu hay không.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubemember-%E5%87%BD%E6%95%B0-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBEMEMBERPROPERTY:{description:"Trả về giá trị thuộc tính của thành viên trong tập dữ liệu. Sử dụng để xác minh thành viên có tồn tại trong tập dữ liệu hay không và trả về thuộc tính cụ thể của thành viên đó.",abstract:"Trả về giá trị thuộc tính của thành viên trong tập dữ liệu. Sử dụng để xác minh thành viên có tồn tại trong tập dữ liệu hay không và trả về thuộc tính cụ thể của thành viên đó.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubememberproperty-%E5%87%BD%E6%95%B0-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBERANKEDMEMBER:{description:"Trả về thành viên thứ n hoặc xếp hạng trong một tập hợp. Sử dụng để trả về một hoặc nhiều phần tử trong tập hợp, như nhân viên bán hàng tốt nhất hoặc top 10 sinh viên.",abstract:"Trả về thành viên thứ n hoặc xếp hạng trong một tập hợp. Sử dụng để trả về một hoặc nhiều phần tử trong tập hợp, như nhân viên bán hàng tốt nhất hoặc top 10 sinh viên.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cuberankedmember-%E5%87%BD%E6%95%B0-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBESET:{description:"Định nghĩa một tập hợp các thành viên hoặc tuple được tính toán. Bằng cách gửi một biểu thức tập hợp tới tập dữ liệu trên máy chủ, biểu thức này tạo tập hợp và sau đó trả tập hợp đó về Microsoft Excel.",abstract:"Định nghĩa một tập hợp các thành viên hoặc tuple được tính toán. Bằng cách gửi một biểu thức tập hợp tới tập dữ liệu trên máy chủ, biểu thức này tạo tập hợp và sau đó trả tập hợp đó về Microsoft Excel.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubeset-%E5%87%BD%E6%95%B0-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBESETCOUNT:{description:"Trả về số lượng mục trong tập hợp.",abstract:"Trả về số lượng mục trong tập hợp.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubesetcount-%E5%87%BD%E6%95%B0-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}},CUBEVALUE:{description:"Trả về giá trị tổng hợp từ tập dữ liệu.",abstract:"Trả về giá trị tổng hợp từ tập dữ liệu.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/cubevalue-%E5%87%BD%E6%95%B0-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"Tham số thứ nhất"},number2:{name:"number2",detail:"Tham số thứ hai"}}}},...{BETADIST:{description:"Trả về hàm phân phối tích lũy beta",abstract:"Trả về hàm phân phối tích lũy beta",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/betadist-%E5%87%BD%E6%95%B0-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"số",detail:"Giá trị được sử dụng để tính toán hàm của nó, giữa giá trị giới hạn dưới và giá trị giới hạn trên."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},A:{name:"giới hạn dưới",detail:"Giới hạn dưới của hàm, giá trị mặc định là 0."},B:{name:"giới hạn trên",detail:"Giới hạn trên của hàm, giá trị mặc định là 1."}}},BETAINV:{description:"Trả về hàm nghịch đảo của hàm phân phối tích lũy beta đã cho",abstract:"Trả về hàm nghịch đảo của hàm phân phối tích lũy beta đã cho",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/betainv-%E5%87%BD%E6%95%B0-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố beta."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},A:{name:"giới hạn dưới",detail:"Giới hạn dưới của hàm, giá trị mặc định là 0."},B:{name:"giới hạn trên",detail:"Giới hạn trên của hàm, giá trị mặc định là 1."}}},BINOMDIST:{description:"Trả về xác suất của phân phối nhị thức đơn",abstract:"Trả về xác suất của phân phối nhị thức đơn",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/binomdist-%E5%87%BD%E6%95%B0-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"số lần thành công",detail:"Số lần thành công trong các phép thử."},trials:{name:"số phép thử",detail:"Số phép thử độc lập."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm BINOMDIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},CHIDIST:{description:"Trả về xác suất bên phải của phân bố χ2",abstract:"Trả về xác suất bên phải của phân bố χ2",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/chidist-%E5%87%BD%E6%95%B0-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"số",detail:"Giái trị bạn muốn đánh giá phân phối."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."}}},CHIINV:{description:"Trả về hàm nghịch đảo của xác suất ở đuôi bên phải của phân bố χ2.",abstract:"Trả về hàm nghịch đảo của xác suất ở đuôi bên phải của phân bố χ2.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/chiinv-%E5%87%BD%E6%95%B0-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối χ2."},degFreedom:{name:"bậc tự do",detail:"Số bậc tự do."}}},CHITEST:{description:"Trả về giá trị kiểm định độc lập",abstract:"Trả về giá trị kiểm định độc lập",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/chitest-%E5%87%BD%E6%95%B0-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"phạm vi quan sát",detail:"Phạm vi dữ liệu chứa các quan sát để kiểm thử đối với các giá trị dự kiến."},expectedRange:{name:"phạm vi dự kiến",detail:"Phạm vi dữ liệu chứa tỷ lệ của phép nhân tổng hàng và tổng cột với tổng cộng."}}},CONFIDENCE:{description:"Trả về khoảng tin cậy của trung bình tổng thể, bằng cách dùng phân bố chuẩn hóa.",abstract:"Trả về khoảng tin cậy của trung bình tổng thể, bằng cách dùng phân bố chuẩn hóa.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/confidence-%E5%87%BD%E6%95%B0-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"Mức quan trọng được dùng để tính toán mức tin cậy. Mức tin cậy bằng 100*(1 - alpha)%, hay nói cách khác, alpha 0,05 cho biết mức tin cậy 95 phần trăm."},standardDev:{name:"Độ lệch chuẩn tổng",detail:"Độ lệch chuẩn tổng thể cho phạm vi dữ liệu và được giả định là đã được xác định."},size:{name:"cỡ mẫu",detail:"Cỡ mẫu."}}},COVAR:{description:"Trả về hiệp phương sai của tập hợp, trung bình tích của các độ lệnh cho mỗi cặp điểm dữ liệu trong hai tập dữ liệu.",abstract:"Trả về hiệp phương sai của tập hợp",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/covar-%E5%87%BD%E6%95%B0-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"mảng 1",detail:"Phạm vi giá trị ô đầu tiên."},array2:{name:"mảng 2",detail:"Phạm vi giá trị ô thứ hai."}}},CRITBINOM:{description:"Trả về giá trị nhỏ nhất mà phân phối nhị thức tích lũy nhỏ hơn hoặc bằng giá trị tới hạn",abstract:"Trả về giá trị nhỏ nhất mà phân phối nhị thức tích lũy nhỏ hơn hoặc bằng giá trị tới hạn",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/critbinom-%E5%87%BD%E6%95%B0-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"số phép thử",detail:"Số phép thử Bernoulli."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},alpha:{name:"xác suất mục tiêu",detail:"Giá trị tiêu chí."}}},EXPONDIST:{description:"Trả về phân phối mũ",abstract:"Trả về phân phối mũ",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/expondist-%E5%87%BD%E6%95%B0-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"số",detail:"Giái trị bạn muốn đánh giá phân phối."},lambda:{name:"lambda",detail:"Giá trị tham số."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì EXPONDIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},FDIST:{description:"Trả về phân bố xác suất F (đuôi bên phải)",abstract:"Trả về phân bố xác suất F (đuôi bên phải)",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/fdist-%E5%87%BD%E6%95%B0-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"số",detail:"Giá trị để đánh giá hàm."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."}}},FINV:{description:"Trả về giá trị đảo của phân bố xác suất F (đuôi bên phải).",abstract:"Trả về giá trị đảo của phân bố xác suất F (đuôi bên phải).",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/finv-%E5%87%BD%E6%95%B0-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố lũy tích F."},degFreedom1:{name:"bậc tự do ở tử số",detail:"Bậc tự do ở tử số."},degFreedom2:{name:"bậc tự do ở mẫu số.",detail:"Bậc tự do ở mẫu số."}}},FTEST:{description:"Trả về kết quả kiểm định F",abstract:"Trả về kết quả kiểm định F",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/ftest-%E5%87%BD%E6%95%B0-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng thứ nhất của phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng thứ hai của phạm vi dữ liệu."}}},GAMMADIST:{description:"Trả về phân phối γ",abstract:"Trả về phân phối γ",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/gammadist-%E5%87%BD%E6%95%B0-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm GAMMADIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},GAMMAINV:{description:"Trả về hàm nghịch đảo của hàm phân phối tích lũy γ",abstract:"Trả về hàm nghịch đảo của hàm phân phối tích lũy γ",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/gammainv-%E5%87%BD%E6%95%B0-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất gắn với phân bố gamma."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."}}},HYPGEOMDIST:{description:"Trả về phân bố siêu bội.",abstract:"Trả về phân bố siêu bội.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/hypgeomdist-%E5%87%BD%E6%95%B0-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"Số lần thành công mẫu",detail:"Số lần thành công trong mẫu."},numberSample:{name:"Kích thước mẫu",detail:"Kích thước mẫu."},populationS:{name:"Tổng số thành công",detail:"Số lượng thành công trong dân số."},numberPop:{name:"Kích thước tổng thể",detail:"Kích thước tổng thể."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm HYPGEOMDIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},LOGINV:{description:"Trả về nghịch đảo của hàm phân bố lô-ga-rit chuẩn lũy tích của",abstract:"Trả về nghịch đảo của hàm phân bố lô-ga-rit chuẩn lũy tích của",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/loginv-%E5%87%BD%E6%95%B0-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố lô-ga-rit chuẩn."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."}}},LOGNORMDIST:{description:"Trả về phân bố chuẩn lô-ga-rít của",abstract:"Trả về phân bố chuẩn lô-ga-rít của",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/lognormdist-%E5%87%BD%E6%95%B0-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì LOGNORMDIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},MODE:{description:"Trả về giá trị xuất hiện nhiều nhất trong tập dữ liệu.",abstract:"Trả về giá trị xuất hiện nhiều nhất trong tập dữ liệu.",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/mode-%E5%87%BD%E6%95%B0-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"số 1",detail:"Số đầu tiên, tham chiếu ô hoặc phạm vi ô mà chế độ sẽ được tính toán."},number2:{name:"số 2",detail:"Tối đa 255 số bổ sung, tham chiếu ô hoặc phạm vi ô để tính chế độ."}}},NEGBINOMDIST:{description:"Trả về phân bố nhị thức âm",abstract:"Trả về phân bố nhị thức âm",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/negbinomdist-%E5%87%BD%E6%95%B0-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"số lần thất bại.",detail:"Số lần thất bại."},numberS:{name:"số lần thành công",detail:"Số ngưỡng thành công."},probabilityS:{name:"xác suất thành công",detail:"Xác suất thành công của mỗi phép thử."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm NEGBINOMDIST trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},NORMDIST:{description:"Trả về hàm phân phối tích lũy chuẩn",abstract:"Trả về hàm phân phối tích lũy chuẩn",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/normdist-%E5%87%BD%E6%95%B0-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì NORMDIST trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},NORMINV:{description:"Trả về hàm nghịch đảo của hàm phân phối tích lũy chuẩn",abstract:"Trả về hàm nghịch đảo của hàm phân phối tích lũy chuẩn",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/norminv-%E5%87%BD%E6%95%B0-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố chuẩn."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},standardDev:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn của phân phối."}}},NORMSDIST:{description:"Trả về hàm phân phối tích lũy chuẩn hóa",abstract:"Trả về hàm phân phối tích lũy chuẩn hóa",links:[{title:"Giảng dạy",url:"https://support.microsoft.com/vi-vn/office/normsdist-%E5%87%BD%E6%95%B0-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"Giá trị mà bạn muốn có phân bố của nó."}}},NORMSINV:{description:"Trả về hàm nghịch đảo phân phối chuẩn chuẩn hóa",abstract:"Trả về hàm nghịch đảo phân phối chuẩn chuẩn hóa",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/normsinv-%E5%87%BD%E6%95%B0-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"xác suất",detail:"Một xác suất tương ứng với phân bố chuẩn."}}},PERCENTILE:{description:"Trả về giá trị phân vị thứ k trong tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về giá trị phân vị thứ k trong tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentile-%E5%87%BD%E6%95%B0-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},k:{name:"k",detail:"Giá trị phần trăm từ 0 đến 1 (bao gồm 0 và 1)."}}},PERCENTRANK:{description:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về thứ hạng phần trăm của các giá trị trong tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/percentrank-%E5%87%BD%E6%95%B0-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"mảng",detail:"Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối."},x:{name:"x",detail:"Giá trị mà bạn muốn biết thứ hạng của nó."},significance:{name:"chữ số có nghĩa",detail:"Giá trị xác định số chữ số có nghĩa của giá trị phần trăm trả về. Nếu bỏ qua, hàm PERCENTRANK dùng ba chữ số (0.xxx)."}}},POISSON:{description:"Trả về phân bố Poisson.",abstract:"Trả về phân bố Poisson.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/poisson-%E5%87%BD%E6%95%B0-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},mean:{name:"trung độ số",detail:"Trung độ số học của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là ĐÚNG thì POISSON trả về hàm phân bố lũy tích; nếu SAI, nó trả về hàm mật độ xác suất."}}},QUARTILE:{description:"Trả về các phần tư của tập dữ liệu (bao gồm 0 và 1)",abstract:"Trả về các phần tư của tập dữ liệu (bao gồm 0 và 1)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/quartile-%E5%87%BD%E6%95%B0-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"mảng",detail:"Một mảng hoặc phạm vi dữ liệu yêu cầu giá trị tứ phân vị."},quart:{name:"giá trị tứ phân",detail:"Giá trị tứ phân vị cần trả về."}}},RANK:{description:"Trả về xếp hạng của một chuỗi số",abstract:"Trả về xếp hạng của một chuỗi số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/rank-%E5%87%BD%E6%95%B0-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"số",detail:"Số mà bạn muốn tìm thứ hạng của nó."},ref:{name:"danh sách các số",detail:"Tham chiếu tới danh sách các số. Các giá trị không phải là số trong tham chiếu sẽ được bỏ qua."},order:{name:"xếp hạng số",detail:"Một con số chỉ rõ cách xếp hạng số. 0 hoặc bị bỏ qua đối với thứ tự giảm dần, khác 0 đối với thứ tự tăng dần."}}},STDEV:{description:"Ước tính độ lệch chuẩn dựa trên mẫu. Độ lệch chuẩn đo lường phạm vi phân bố của các giá trị xung quanh giá trị trung bình (hay trung vị).",abstract:"Ước tính độ lệch chuẩn dựa trên mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdev-%E5%87%BD%E6%95%B0-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"Tham số số 1, tương ứng với giá trị mẫu đầu tiên."},number2:{name:"number2",detail:"Tham số số 2, tương ứng với các giá trị mẫu từ 2 đến 255. Cũng có thể sử dụng mảng đơn hoặc tham chiếu đến mảng thay vì sử dụng các tham số được phân tách bằng dấu phẩy."}}},STDEVP:{description:"Tính độ lệch chuẩn của toàn bộ quần thể được cung cấp dưới dạng tham số.",abstract:"Tính độ lệch chuẩn của toàn bộ quần thể được cung cấp dưới dạng tham số",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/stdevp-%E5%87%BD%E6%95%B0-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"Tham số số 1, tương ứng với giá trị mẫu đầu tiên."},number2:{name:"number2",detail:"Tham số số 2, tương ứng với các giá trị mẫu từ 2 đến 255. Cũng có thể sử dụng mảng đơn hoặc tham chiếu đến mảng thay vì sử dụng các tham số được phân tách bằng dấu phẩy."}}},TDIST:{description:"Trả về phân phối xác suất t-Student của Học sinh",abstract:"Trả về phân phối xác suất t-Student của Học sinh",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tdist-%E5%87%BD%E6%95%B0-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"Cần tính giá trị số của phân bố."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."},tails:{name:"đặc điểm đuôi",detail:"Xác định số phần dư của phân bố được trả về. Nếu Tails = 1, hàm TDIST sẽ trả về phân bố một phía. Nếu Tails = 2, hàm TDIST sẽ trả về phân bố hai phía."}}},TINV:{description:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh (hai đuôi)",abstract:"Trả về hàm nghịch đảo của phân bố xác suất t-Student của Học sinh (hai đuôi)",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/tinv-%E5%87%BD%E6%95%B0-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"xác suất",detail:"Xác suất liên quan đến phân phối t-Student của Sinh viên."},degFreedom:{name:"bậc tự do",detail:"Một số nguyên biểu thị số bậc tự do."}}},TTEST:{description:"Trả về xác suất kết hợp với Phép thử t-Student.",abstract:"Trả về xác suất kết hợp với Phép thử t-Student.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ttest-%E5%87%BD%E6%95%B0-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"mảng 1",detail:"Mảng thứ nhất của phạm vi dữ liệu."},array2:{name:"mảng 2",detail:"Mảng thứ hai của phạm vi dữ liệu."},tails:{name:"đặc điểm đuôi",detail:"Xác định số đuôi của phân phối. Nếu đuôi = 1, TTEST sử dụng phân phối một phía. Nếu đuôi = 2, TTEST sử dụng phân phối hai phía."},type:{name:"loại Phép thử",detail:"Loại Phép thử t cần thực hiện."}}},VAR:{description:"Tính toán phương sai dựa trên mẫu cho tập dữ liệu cho trước.",abstract:"Tính toán phương sai dựa trên mẫu",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/var-%E5%87%BD%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"Tham số số 1, tương ứng với giá trị mẫu đầu tiên."},number2:{name:"number2",detail:"Tham số số 2, tương ứng với các giá trị mẫu từ 2 đến 255."}}},VARP:{description:"Tính toán phương sai dựa trên toàn bộ quần thể cho tập dữ liệu cho trước.",abstract:"Tính toán phương sai dựa trên toàn bộ quần thể",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/varp-%E5%87%BD%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"Tham số số 1, tương ứng với giá trị mẫu đầu tiên."},number2:{name:"number2",detail:"Tham số số 2, tương ứng với các giá trị mẫu từ 2 đến 255."}}},WEIBULL:{description:"Trả về phân bố Weibull.",abstract:"Trả về phân bố Weibull.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/weibull-%E5%87%BD%E6%95%B0-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"Giá trị mà bạn muốn có phân bố của nó."},alpha:{name:"alpha",detail:"Tham số đầu tiên của phân phối."},beta:{name:"beta",detail:"Tham số thứ hai của phân phối."},cumulative:{name:"tích lũy",detail:"Một giá trị lô-gic quyết định dạng thức của hàm. Nếu tích lũy là TRUE, hàm WEIBULL trả về hàm phân bố tích lũy; nếu FALSE, nó trả về hàm mật độ xác suất."}}},ZTEST:{description:"Trả về giá trị xác suất một phía của kiểm tra z.",abstract:"Trả về giá trị xác suất một phía của kiểm tra z.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/ztest-%E5%87%BD%E6%95%B0-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"mảng",detail:"Mảng hay khoảng dữ liệu để kiểm tra x."},x:{name:"x",detail:"Giá trị cần kiểm tra."},sigma:{name:"Độ lệch chuẩn",detail:"Độ lệch chuẩn tổng thể (đã biết). Nếu bỏ qua, độ lệch chuẩn mẫu sẽ được dùng."}}}},...{ENCODEURL:{description:"Trả về một chuỗi được mã hóa URL.",abstract:"Trả về một chuỗi được mã hóa URL.",links:[{title:"Hướng dẫn",url:"https://support.microsoft.com/vi-vn/office/encodeurl-%E5%87%BD%E6%95%B0-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"văn bản",detail:"Một chuỗi cần mã hóa URL."}}}},...{ARRAY_CONSTRAIN:{description:"Ràng buộc giá trị mảng vào một kích thước chỉ định sẵn.",abstract:"Ràng buộc giá trị mảng vào một kích thước chỉ định sẵn.",links:[{title:"Giảng dạy",url:"https://support.google.com/docs/answer/3267036?hl=vi&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"mảng",detail:"Dải ô giới hạn."},numRows:{name:"số hàng",detail:"Số hàng mà kết quả cần có."},numCols:{name:"số cột",detail:"Số cột mà kết quả cần có"}}},FLATTEN:{description:"Làm phẳng tất cả giá trị trong một hoặc nhiều dải ô thành một cột duy nhất.",abstract:"Làm phẳng tất cả giá trị trong một hoặc nhiều dải ô thành một cột duy nhất.",links:[{title:"Giảng dạy",url:"https://support.google.com/docs/answer/10307761?hl=vi&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"dải ô 1",detail:"Dải ô đầu tiên cần làm phẳng."},range2:{name:"dải ô 2",detail:"Các dải ô bổ sung để làm phẳng."}}}},...{}},prompt:{helpExample:"Ví dụ",helpAbstract:"Giới thiệu",required:"Bắt buộc.",optional:"Tùy chọn."},error:{title:"Lỗi",divByZero:"Mẫu số bằng không",name:"Tên không hợp lệ",value:"Lỗi trong giá trị",num:"Lỗi số",na:"Giá trị không khả dụng",cycle:"Tham chiếu vòng lặp",ref:"Tham chiếu ô không hợp lệ",spill:"Vùng tràn không phải vùng trống",calc:"Lỗi tính toán",error:"Lỗi",connect:"Đang kết nối",null:"Lỗi giá trị rỗng"},functionType:{financial:"Tài chính",date:"Ngày và giờ",math:"Toán học và lượng giác",statistical:"Thống kê",lookup:"Tra cứu và tham chiếu",database:"Cơ sở dữ liệu",text:"Văn bản",logical:"Lôgic",information:"Thông tin",engineering:"Kỹ thuật",cube:"Khối dữ liệu",compatibility:"Tương thích",web:"Web",array:"Mảng",univer:"Univer",user:"Tùy chỉnh của người dùng",definedname:"Tên đã xác định"},moreFunctions:{confirm:"Áp dụng",prev:"Bước trước",next:"Bước tiếp theo",searchFunctionPlaceholder:"Tìm kiếm hàm",allFunctions:"Tất cả các hàm",syntax:"Cú pháp"},operation:{pasteFormula:"Chỉ dán công thức"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/vi-VN +(function(n,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverSheetsNumfmtUiViVN=t())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"Phần trăm",title:"Định dạng số",numfmtType:"Loại định dạng",cancel:"Hủy bỏ",confirm:"Xác nhận",general:"Chung",accounting:"Kế toán",text:"Văn bản",number:"Số",currency:"Tiền tệ",date:"Ngày",time:"Thời gian",thousandthPercentile:"Phân vị phần nghìn",preview:"Xem trước",dateTime:"Ngày giờ",decimalLength:"Số chữ số thập phân",currencyType:"Loại tiền tệ",moreFmt:"Nhiều định dạng hơn",financialValue:"Giá trị tài chính",roundingCurrency:"Tiền tệ làm tròn",timeDuration:"Thời lượng",currencyDes:"Định dạng tiền tệ được sử dụng để biểu thị các giá trị tiền tệ thông thường. Định dạng kế toán có thể căn chỉnh các giá trị trong một cột với dấu thập phân.",accountingDes:"Định dạng số kế toán có thể căn chỉnh các ký hiệu tiền tệ và dấu thập phân trong một cột các giá trị.",dateType:"Loại ngày",dateDes:"Định dạng ngày biểu thị các giá trị chuỗi ngày và thời gian dưới dạng giá trị ngày.",negType:"Loại số âm",generalDes:"Định dạng chung không chứa bất kỳ định dạng số cụ thể nào.",thousandthPercentileDes:"Định dạng phân vị phần nghìn được sử dụng để biểu thị các số thông thường. Các định dạng tiền tệ và kế toán cung cấp các định dạng chuyên dụng để tính toán giá trị tiền tệ.",addDecimal:"Thêm chữ số thập phân",subtractDecimal:"Giảm chữ số thập phân",customFormat:"Custom Format",customFormatDes:"Generate custom number formats based on existing formats."}}}}); + + +// locale/vi-VN +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/design/locale/vi-VN"),require("@univerjs/docs-ui/locale/vi-VN"),require("@univerjs/sheets/locale/vi-VN"),require("@univerjs/sheets-formula/locale/vi-VN"),require("@univerjs/sheets-formula-ui/locale/vi-VN"),require("@univerjs/sheets-numfmt-ui/locale/vi-VN"),require("@univerjs/sheets-ui/locale/vi-VN"),require("@univerjs/ui/locale/vi-VN")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/vi-VN","@univerjs/docs-ui/locale/vi-VN","@univerjs/sheets/locale/vi-VN","@univerjs/sheets-formula/locale/vi-VN","@univerjs/sheets-formula-ui/locale/vi-VN","@univerjs/sheets-numfmt-ui/locale/vi-VN","@univerjs/sheets-ui/locale/vi-VN","@univerjs/ui/locale/vi-VN"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreViVN=i(e.UniverCore,e.UniverDesignViVN,e.UniverDocsUiViVN,e.UniverSheetsViVN,e.UniverSheetsFormulaViVN,e.UniverSheetsFormulaUiViVN,e.UniverSheetsNumfmtUiViVN,e.UniverSheetsUiViVN,e.UniverUiViVN))})(this,function(e,i,r,s,u,n,v,V,t){"use strict";return e.merge({},i,r,s,u,n,v,V,t)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-core.locales.zh-CN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/zh-CN.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-core.locales.zh-CN.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/zh-CN.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/zh-TW.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/zh-TW.js new file mode 100644 index 00000000..eb2ee71c --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-core/locales/zh-TW.js @@ -0,0 +1,73 @@ +// @univerjs/ui/locale/zh-TW +(function(e,o){typeof exports=="object"&&typeof module<"u"?module.exports=o():typeof define=="function"&&define.amd?define(o):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverUiZhTW=o())})(this,function(){"use strict";return{ribbon:{start:"開始",insert:"插入",formulas:"公式",data:"資料",view:"視圖",others:"其他",more:"更多"},fontFamily:{TimesNewRoman:"Times New Roman",Arial:"Arial",Tahoma:"Tahoma",Verdana:"Verdana",MicrosoftYaHei:"微軟雅黑",SimSun:"宋體",SimHei:"黑體",Kaiti:"楷體",FangSong:"仿宋",NSimSun:"新宋體",STXinwei:"華文新魏",STXingkai:"華文行楷",STLiti:"華文隸書",HanaleiFill:"HanaleiFill",Anton:"Anton",Pacifico:"Pacifico"},"shortcut-panel":{title:"快捷鍵面板"},shortcut:{undo:"撤銷",redo:"重做",cut:"剪切",copy:"複製",paste:"貼上","shortcut-panel":"開啟收起快捷鍵面板"},"common-edit":"常用編輯","toggle-shortcut-panel":"開啟收起快速鍵面板",clipboard:{authentication:{title:"無法存取剪貼簿",content:"請允許 Univer 存取您的剪貼簿。 "}},textEditor:{formulaError:"請輸入合法的公式,例如=SUM(A1)",rangeError:"請輸入合法的範圍,例如 A1:B10"},rangeSelector:{title:"選擇一個資料範圍",addAnotherRange:"新增範圍",buttonTooltip:"選擇資料範圍",placeHolder:"框選範圍或輸入",confirm:"確認",cancel:"取消"},"global-shortcut":"全域快捷鍵","zoom-slider":{resetTo:"恢復至"}}}); + + +// @univerjs/docs-ui/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDocsUiZhTW=t())})(this,function(){"use strict";return{toolbar:{undo:"撤銷",redo:"重做",font:"字體",fontSize:"字號",bold:"粗體",italic:"斜體",strikethrough:"刪除線",subscript:"下標",superscript:"上標",underline:"底線",textColor:{main:"文字顏色",right:"顏色選擇"},fillColor:{main:"文字背景色",right:"背景色選擇"},table:{main:"Table",insert:"Insert Table",colCount:"Column count",rowCount:"Row count"},resetColor:"重置顏色",order:"有序列表",unorder:"無序列表",alignLeft:"左對齊",alignCenter:"居中對齊",alignRight:"右對齊",alignJustify:"兩端對齊",headerFooter:"頁眉頁腳",checklist:"任務列表",documentFlavor:"现代模式"},table:{insert:"Insert",insertRowAbove:"Insert row above",insertRowBelow:"Insert row below",insertColumnLeft:"Insert column left",insertColumnRight:"Insert column right",delete:"Table delete",deleteRows:"Delete row",deleteColumns:"Delete column",deleteTable:"Delete table"},headerFooter:{header:"頁眉",footer:"頁腳",panel:"頁眉頁腳設置",firstPageCheckBox:"首頁不同",oddEvenCheckBox:"奇偶頁不同",headerTopMargin:"頁眉頂端距離(px)",footerBottomMargin:"頁腳底端距離(px)",closeHeaderFooter:"關閉頁眉頁腳",disableText:"頁眉頁腳設置不可用"},doc:{menu:{paragraphSetting:"Paragraph Setting"},slider:{paragraphSetting:"Paragraph Setting"},paragraphSetting:{alignment:"Alignment",indentation:"Indentation",left:"Left",right:"Right",firstLine:"First Line",hanging:"Hanging",spacing:"Spacing",before:"Before",after:"After",lineSpace:"Line Space",multiSpace:"Multi Space",fixedValue:"Fixed Value(px)"}}}}); + + +// @univerjs/sheets/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZhTW=t())})(this,function(){"use strict";return{sheets:{tabs:{sheetCopy:"(副本{0})",sheet:"工作表"},info:{overlappingSelections:"無法對重疊選區使用該命令",acrossMergedCell:"無法跨越合併儲存格",partOfCell:"僅選擇了合併儲存格的一部份",hideSheet:"隱藏後無可見工作表"}}}}); + + +// @univerjs/sheets-ui/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsUiZhTW=t())})(this,function(){"use strict";return{spreadsheetLabel:"插件",spreadsheetRightLabel:"更多 Sheets",toolbar:{undo:"撤銷",redo:"重做",formatPainter:"格式刷",font:"字體",fontSize:"字號",bold:"粗體",italic:"斜體",strikethrough:"刪除線",subscript:"下標",superscript:"上標",underline:"底線",textColor:{main:"文字顏色",right:"顏色選擇"},resetColor:"重置顏色",fillColor:{main:"單元格顏色",right:"顏色選擇"},border:{main:"邊框",right:"邊框類型"},mergeCell:{main:"合併儲存格",right:"選擇合併類型"},horizontalAlignMode:{main:"水平對齊",right:"對齊方式"},verticalAlignMode:{main:"垂直對齊",right:"對齊方式"},textWrapMode:{main:"文字換行",right:"換行方式"},textRotateMode:{main:"文字旋轉",right:"旋轉方式"},more:"更多",toggleGridlines:"切換網格線"},align:{left:"左對齊",center:"中間對齊",right:"右對齊",top:"頂部對齊",middle:"居中對齊",bottom:"底部對齊"},button:{confirm:"確定",cancel:"取消",close:"關閉",update:"Update",delete:"Delete",insert:"新建",prevPage:"上一頁",nextPage:"下一頁",total:"總共:"},punctuation:{tab:"Tab 鍵",semicolon:"分號",comma:"逗號",space:"空格"},colorPicker:{collapse:"收起",customColor:"自訂",change:"切換",confirmColor:"確定",cancelColor:"取消"},borderLine:{borderTop:"上框線",borderBottom:"下框線",borderLeft:"左框線",borderRight:"右框線",borderNone:"無",borderAll:"所有",borderOutside:"外側",borderInside:"內側",borderHorizontal:"內側橫線",borderVertical:"內側垂直線",borderColor:"邊框顏色",borderSize:"邊框粗細",borderType:"邊框線類型"},merge:{all:"全部合併",vertical:"垂直合併",horizontal:"水平合併",cancel:"取消合併",overlappingError:"不能合併重疊區域",partiallyError:"無法對部分合併儲存格執行此操作",confirm:{title:"合併儲存格僅儲存左上角儲存格的值,是否繼續? ",cancel:"取消合併",confirm:"繼續合併",waring:"警告",dismantleMergeCellWaring:"此操作會導致一些合併單元格被拆散,是否繼續?"}},filter:{confirm:{error:"出現了一個問題",notAllowedToInsertRange:"要移動這些單元格,請清除該區域的篩選器"}},textWrap:{overflow:"溢出",wrap:"自動換行",clip:"截斷"},textRotate:{none:"無旋轉",angleUp:"向上傾斜",angleDown:"向下傾斜",vertical:"直排文字",rotationUp:"向上90°",rotationDown:"向下90°"},sheetConfig:{delete:"刪除",copy:"複製",rename:"重命名",changeColor:"更改顏色",hide:"隱藏",unhide:"取消隱藏",moveLeft:"向左移",moveRight:"向右移",resetColor:"重置顏色",cancelText:"取消",chooseText:"確定顏色",tipNameRepeat:"標籤頁的名稱不能重複!請重新修改",noMoreSheet:"工作薄內至少含有一張可視工作表。若需刪除選定的工作表,請先插入一張新工作表或顯示隱藏的工作表。 ",confirmDelete:"是否刪除",redoDelete:"可以透過Ctrl+Z撤銷刪除",noHide:"不能隱藏, 至少保留一個sheet標籤",chartEditNoOpt:"圖表編輯模式下不允許該操作! ",sheetNameErrorTitle:"錯誤",sheetNameSpecCharError:"名稱不能超過 31 個字符,首尾不能是' 且名稱不能包含: [ ] : \\ ? * /",sheetNameCannotIsEmptyError:"名稱不能為空。 ",sheetNameAlreadyExistsError:"工作表已存在,請輸入其它名稱。 ",deleteSheet:"刪除工作表",deleteSheetContent:"確認刪除此工作表,刪除後將不可找回,確定要刪除嗎? ",addProtectSheet:"保護工作表",removeProtectSheet:"取消保護工作表",changeSheetPermission:"更改工作表權限",viewAllProtectArea:"查看所有保護範圍"},rightClick:{copy:"複製",cut:"剪切",paste:"貼上",pasteSpecial:"選擇性貼上",pasteValue:"僅貼上值",pasteFormat:"僅貼上格式",pasteColWidth:"僅貼上列寬",pasteBesidesBorder:"僅貼上邊框以外內容",insert:"插入",delete:"刪除",insertRow:"插入行",insertRowBefore:"上方插入行",insertRowsAbove:"在上方插入",insertRowsAfter:"在下方插入",insertRowsAfterSuffix:"行",insertRowsAboveSuffix:"行",insertColumn:"插入列",insertColumnBefore:"在左側插入列",insertColsLeft:"在左側插入",insertColsRight:"在右側插入",insertColsLeftSuffix:"列",insertColsRightSuffix:"列",deleteCell:"刪除儲存格",insertCell:"插入儲存格",deleteSelected:"刪除選取",hide:"隱藏",hideSelected:"隱藏選中",showHide:"顯示隱藏",toTopAdd:"向上增加",toBottomAdd:"向下增加",toLeftAdd:"向左增加",toRightAdd:"向右增加",deleteSelectedRow:"刪除選取行",deleteSelectedColumn:"刪除選取列",hideSelectedRow:"隱藏選中行",showHideRow:"顯示隱藏行",rowHeight:"行高",hideSelectedColumn:"隱藏選取列",showHideColumn:"顯示隱藏列",columnWidth:"列寬",moveLeft:"左移",moveUp:"上移",moveRight:"右移",moveDown:"下移",add:"增加",row:"行",column:"列",confirm:"確認",clearSelection:"清除",clearContent:"清除內容",clearFormat:"清除格式",clearAll:"清除全部",root:"次方根",log:"log",delete0:"刪除兩端0值",removeDuplicate:"刪除重複值",byRow:"按行",byCol:"按列",generateNewMatrix:"產生新矩陣",fitContent:"適合數據",freeze:"凍結",freezeCol:"凍結列",freezeRow:"凍結行",cancelFreeze:"取消凍結",deleteAllRowsAlert:"您無法刪除工作表上的所有行",deleteAllColumnsAlert:"您無法刪除工作表上的所有欄位",hideAllRowsAlert:"您無法隱藏工作表上的所有行",hideAllColumnsAlert:"您無法隱藏工作表上的所有欄位",protectRange:"保護行列",editProtectRange:"設定保護範圍",removeProtectRange:"移除保護範圍",turnOnProtectRange:"新增保護範圍",viewAllProtectArea:"查看所有保護範圍"},info:{tooltip:"提示",error:"錯誤",notChangeMerge:"不能對合併儲存格做部分更改",detailUpdate:"新開啟",detailSave:"已恢復本機快取",row:"行",column:"列",loading:"渲染中···",copy:"副本",return:"返回",rename:"重命名",tips:"重命名",noName:"無標題的電子表格",wait:"待更新",add:"新增",addLast:"在底部加上",backTop:"回到頂部",pageInfo:"共${total}條,${totalPage}頁,目前已顯示${currentPage}頁",nextPage:"下一頁",tipInputNumber:"請輸入數字",tipInputNumberLimit:"增加範圍限制在1-100",tipRowHeightLimit:"行高必須在0 ~ 545之間",tipColumnWidthLimit:"列寬必須在0 ~ 2038之間",pageInfoFull:"共${total}條,${totalPage}頁,已顯示全部資料",problem:"出現了一個問題",forceStringInfo:"以文字形式儲存的數字"},clipboard:{paste:{exceedMaxCells:"貼上區域超出最大儲存格數",overlappingMergedCells:"貼上區域與合併儲存格重疊"},shortCutNotify:{title:"請使用快捷鍵貼上",useShortCutInstead:"偵測到 Excel 內容,請使用快速鍵貼上"}},statusbar:{sum:"求和",average:"平均值",min:"最小值",max:"最大值",count:"數值計數",countA:"計數",clickToCopy:"點選複製數值",copied:"已複製"},autoFill:{copy:"複製儲存格",series:"填充序列",formatOnly:"僅填滿格式",noFormat:"不含格式填滿"},rangeSelector:{placeholder:"選擇範圍或輸入值",tooltip:"選擇範圍"},shortcut:{sheet:{"zoom-in":"放大","zoom-out":"縮小","reset-zoom":"恢復縮放","select-below-cell":"選擇下方儲存格","select-up-cell":"選擇上方儲存格","select-left-cell":"選擇左側儲存格","select-right-cell":"選擇右側儲存格","select-next-cell":"選取後一個儲存格","select-previous-cell":"選擇前一個儲存格","select-up-value-cell":"選擇上方有值的儲存格","select-below-value-cell":"選取下方有值的儲存格","select-left-value-cell":"選擇左側有值的儲存格","select-right-value-cell":"選擇右側有值的儲存格","expand-selection-down":"向下擴展選區","expand-selection-up":"向上擴展選區","expand-selection-left":"向左擴展選取範圍","expand-selection-right":"向右擴展選區","expand-selection-to-left-gap":"向左擴展選區到下一個邊界","expand-selection-to-below-gap":"向下擴展選區到下一個邊界","expand-selection-to-right-gap":"向右擴展選區到下一個邊界","expand-selection-to-up-gap":"向上擴展選區到下一個邊界","select-all":"全選","toggle-editing":"開始 / 結束編輯","delete-and-start-editing":"清空並開始編輯","abort-editing":"放棄編輯","break-line":"換行","set-bold":"切換粗體","set-italic":"切換斜體","set-underline":"切換底線","set-strike-through":"切換刪除線","start-editing":"開始編輯(選取範圍切換到編輯器)"}},"sheet-view":"瀏覽表格","sheet-edit":"編輯表格",definedName:{managerTitle:"名稱管理器",managerDescription:"透過選擇儲存格或公式,並在文字方塊中輸入您想要的名稱來建立定義名稱。 ",addButton:"新建名稱",featureTitle:"定義名稱",ratioRange:"範圍",ratioFormula:"公式",confirm:"確認",cancel:"取消",scopeWorkbook:"工作簿",inputNamePlaceholder:"請輸入名稱(必填)",inputCommentPlaceholder:"請輸入備註",inputRangePlaceholder:"請輸入範圍(必填)",inputFormulaPlaceholder:"請輸入公式(必填)",nameEmpty:"名稱不能為空",nameDuplicate:"名稱重複",formulaOrRefStringEmpty:"公式或引用字串不能為空",formulaOrRefStringInvalid:"公式或引用字串無效",defaultName:"DefinedName",updateButton:"修改",deleteButton:"刪除",deleteConfirmText:"確定刪除定義名稱? ",nameConflict:"與函數名稱衝突",nameInvalid:"名稱不包含空格或不允許的字元",nameSheetConflict:"名稱與工作表名稱衝突"},uploadLoading:{loading:"正在上傳,目前剩餘",error:"載入失敗"},permission:{toolbarMenu:"保護",panel:{title:"保護行列",name:"名稱",protectedRange:"保護區域",permissionDirection:"權限描述",permissionDirectionPlaceholder:"請輸入權限描述",editPermission:"編輯權限",onlyICanEdit:"僅我可以編輯",designedUserCanEdit:"指定使用者可以編輯",viewPermission:"檢視權限",othersCanView:"其他人可以查看",noOneElseCanView:"其他人不可以查看",designedPerson:"指定人員",addPerson:"新增人員",canEdit:"可編輯",canView:"可查看",delete:"刪除",currentSheet:"目前工作表",allSheet:"所有工作表",edit:"編輯",Print:"打印",Comment:"評論",Copy:"複製",SetCellStyle:"設定儲存格樣式",SetCellValue:"設定單元格值",SetHyperLink:"設定超連結",Sort:"排序",Filter:"篩選",PivotTable:"資料透視表",FloatImage:"浮動圖片",RowHeightColWidth:"行高列寬",RowHeightColWidthReadonly:"只讀行高列寬",FilterReadonly:"唯讀篩選",nameError:"名稱不能為空",created:"創建",iCanEdit:"我可以編輯",iCanNotEdit:"我不會編輯",iCanView:"我可以查看",iCanNotView:"我不可以查看",emptyRangeError:"範圍不能為空",rangeOverlapError:"範圍不能重疊",rangeOverlapOverPermissionError:"範圍不能重疊已有權限範圍",InsertHyperlink:"插入超連結",SetRowStyle:"設定行樣式",SetColumnStyle:"設定列樣式",InsertColumn:"插入列",InsertRow:"插入行",DeleteRow:"刪除行",DeleteColumn:"刪除列",EditExtraObject:"編輯其他物件"},dialog:{allowUserToEdit:"允許使用者編輯",allowedPermissionType:"允許權限類型",setCellValue:"設定單元格值",setCellStyle:"設定儲存格樣式",copy:"複製",alert:"提示",search:"搜索",alertContent:"該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。 ",userEmpty:"沒有指定的人員,分享連結以邀請特定的人。 ",listEmpty:"你還沒有設定任何範圍或工作表為受保護狀態。 ",commonErr:"該範圍已被保護,目前無該操作權限。如需編輯,請聯絡創建者。 ",editErr:"該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。 ",pasteErr:"該範圍已被保護,目前無貼上權限。如需貼上,請聯絡創作者。 ",setStyleErr:"該範圍已被保護,目前無設定樣式權限。如需設定樣式,請聯絡建立者。 ",copyErr:"該範圍已被保護,目前無複製權限。如需複製,請聯絡創建者。 ",workbookCopyErr:"該工作簿已被保護,目前無複製權限。如需複製,請聯絡創建者。 ",setRowColStyleErr:"該範圍已被保護,目前無設定行列樣式權限。如需設定行列樣式,請聯絡建立者。 ",moveRowColErr:"該範圍已被保護,目前無移動行列權限。如需行動行列,請聯絡創作者。 ",moveRangeErr:"該範圍已被保護,目前無移動選取範圍權限。如需移動選區,請聯絡創作者。 ",autoFillErr:"範圍已被保護,目前無自動填入權限。如需自動填充,請聯絡建立者。 ",filterErr:"該範圍已被保護,目前無篩選權限。如需篩選,請聯絡創作者。 ",operatorSheetErr:"該工作表已被保護,目前無操作工作表權限。如需操作工作表,請聯絡創建者。 ",insertOrDeleteMoveRangeErr:"插入、刪除區域與保護範圍相交,暫不支援此操作。 ",printErr:"該工作表已被保護,目前無列印權限。如需列印,請聯絡創作者。 ",formulaErr:"該範圍或引用範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。 ",hyperLinkErr:"範圍已被保護,目前無設定超連結權限。如需設定超鏈接,請聯絡建立者。 "},button:{confirm:"確認",cancel:"取消",addNewPermission:"新增權限"}}}}); + + +// @univerjs/sheets-formula/locale/zh-TW +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsFormulaZhTW=n())})(this,function(){"use strict";return{formula:{progress:{analyzing:"分析中",calculating:"計算中","array-analysis":"陣列分析","array-calculation":"陣列計算",done:"完成"}}}}); + + +// @univerjs/sheets-formula-ui/locale/zh-TW +(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define(e):(t=typeof globalThis<"u"?globalThis:t||self,t.UniverSheetsFormulaUiZhTW=e())})(this,function(){"use strict";return{formula:{insert:{tooltip:"函數",sum:"求和",average:"平均值",count:"計數",max:"最大值",min:"最小值",more:"更多函數..."},functionList:{...{ACCRINT:{description:"返回定期支付利息的債券的應計利息",abstract:"返回定期支付利息的債券的應計利息",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/accrint-%E5%87%BD%E6%95%B0-fe45d089-6722-4fb3-9379-e1f911d8dc74"}],functionParameter:{issue:{name:"發行日",detail:"證券的發行日期。"},firstInterest:{name:"首次計息日",detail:"證券的第一個利率日期。"},settlement:{name:"到期日",detail:"證券的到期日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},par:{name:"面值",detail:"證券的票面價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"},calcMethod:{name:"計算方法",detail:"是一個邏輯值:從發行日期開始的應計利息 = TRUE 或忽略;從最後票據支付日期開始計算 = FALSE。"}}},ACCRINTM:{description:"返回在到期日支付利息的債券的應計利息",abstract:"返回在到期日支付利息的債券的應計利息",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/accrintm-%E5%87%BD%E6%95%B0-f62f01f9-5754-4cc4-805b-0e70199328a7"}],functionParameter:{issue:{name:"發行日",detail:"證券的發行日期。"},settlement:{name:"到期日",detail:"證券的到期日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},par:{name:"面值",detail:"證券的票面價值。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},AMORDEGRC:{description:"使用折舊係數傳回每個記帳期間的折舊值",abstract:"使用折舊係數傳回每個記帳期間的折舊值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/amordegrc-%E5%87%BD%E6%95%B0-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},AMORLINC:{description:"傳回每個記帳期間的折舊值",abstract:"傳回每個記帳期間的折舊值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/amorlinc-%E5%87%BD%E6%95%B0-7d417b45-f7f5-4dba-a0a5-3451a81079a8"}],functionParameter:{cost:{name:"成本",detail:"資產的成本。"},datePurchased:{name:"購買日期",detail:"資產的購買日期。"},firstPeriod:{name:"首個週期",detail:"第一個週期結束的日期。"},salvage:{name:"殘值",detail:"資產耐用年限終了時的殘餘價值。"},period:{name:"週期",detail:"週期。"},rate:{name:"折舊率",detail:"折舊率。"},basis:{name:"基礎",detail:"要使用的年計數基礎。"}}},COUPDAYBS:{description:"傳回從票息期間開始到結算日之間的天數",abstract:"傳回從票息期間開始到結算日之間的天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coupdaybs-%E5%87%BD%E6%95%B0-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},COUPDAYS:{description:"傳回包含結算日的票息期天數",abstract:"傳回包含結算日的票息期天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coupdays-%E5%87%BD%E6%95%B0-cc64380b-315b-4e7b-950c-b30b0a76f671"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},COUPDAYSNC:{description:"傳回從結算日到下一票息支付日之間的天數",abstract:"傳回從結算日到下一票息支付日之間的天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coupdaysnc-%E5%87%BD%E6%95%B0-5ab3f0b2-029f-4a8b-bb65-47d525eea547"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},COUPNCD:{description:"返回結算日之後的下一個票息支付日",abstract:"返回結算日之後的下一個票息支付日",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coupncd-%E5%87%BD%E6%95%B0-fd962fef-506b-4d9d-8590-16df5393691f"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},COUPNUM:{description:"返回結算日與到期日之間可支付的票息數",abstract:"返回結算日與到期日之間可支付的票息數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coupnum-%E5%87%BD%E6%95%B0-a90af57b-de53-4969-9c99-dd6139db2522"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},COUPPCD:{description:"返回結算日之前的上一票息支付日",abstract:"返回結算日之前的上一票息支付日",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/couppcd-%E5%87%BD%E6%95%B0-2eb50473-6ee9-4052-a206-77a9a385d5b3"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},CUMIPMT:{description:"傳回兩個付款期間之間累積支付的利息",abstract:"返回兩個付款期之間累積支付的利息",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cumipmt-%E5%87%BD%E6%95%B0-61067bb0-9016-427d-b95b-1a752af0e606"}],functionParameter:{rate:{name:"利率",detail:"利率。"},nper:{name:"總期數",detail:"總付款期數。"},pv:{name:"現值",detail:"現值。"},startPeriod:{name:"首期",detail:"計算中的第一個週期。付款週期的編號由1開始。"},endPeriod:{name:"末期",detail:"計算中的最後一個週期。"},type:{name:"類型",detail:"付款的時機。"}}},CUMPRINC:{description:"返回兩個付款期之間為貸款累積支付的本金",abstract:"返回兩個付款期之間為貸款累積支付的本金",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cumprinc-%E5%87%BD%E6%95%B0-94a4516d-bd65-41a1-bc16-053a6af4c04d"}],functionParameter:{rate:{name:"利率",detail:"利率。"},nper:{name:"總期數",detail:"總付款期數。"},pv:{name:"現值",detail:"現值。"},startPeriod:{name:"首期",detail:"計算中的第一個週期。付款週期的編號由1開始。"},endPeriod:{name:"末期",detail:"計算中的最後一個週期。"},type:{name:"類型",detail:"付款的時機。"}}},DB:{description:"使用固定餘額遞減法,傳回一筆資產在給定期間內的折舊值",abstract:"使用固定餘額遞減法,傳回一筆資產在給定期間內的折舊值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/db-%E5%87%BD%E6%95%B0-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7"}],functionParameter:{cost:{name:"成本",detail:"資產的原始成本。"},salvage:{name:"殘值",detail:"折舊最後的值 (有時稱為資產的殘餘價值)。"},life:{name:"使用年限",detail:"資產折舊的期數 (有時稱為資產的使用年限)。"},period:{name:"期間",detail:"要計算折舊的期間。"},month:{name:"月份",detail:"第一年的月份數。如果省略 month,則假設其值為12。"}}},DDB:{description:"使用雙倍餘額遞減法或其他指定方法,傳回一筆資產在給定期間內的折舊值",abstract:"使用雙倍餘額遞減法或其他指定方法,傳回一筆資產在給定期間內的折舊值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ddb-%E5%87%BD%E6%95%B0-519a7a37-8772-4c96-85c0-ed2c209717a5"}],functionParameter:{cost:{name:"成本",detail:"資產的原始成本。"},salvage:{name:"殘值",detail:"折舊最後的值 (有時稱為資產的殘餘價值)。"},life:{name:"使用年限",detail:"資產折舊的期數 (有時稱為資產的使用年限)。"},period:{name:"期間",detail:"要計算折舊的期間。"},factor:{name:"速率",detail:"餘額遞減的速率。如果省略factor,將假設其值為2(倍率遞減法)。"}}},DISC:{description:"返回債券的折現率",abstract:"返回債券的折現率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/disc-%E5%87%BD%E6%95%B0-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},pr:{name:"價格",detail:"證券每$100面額的價格。"},redemption:{name:"贖回價",detail:"證券每$100面額的贖回價值。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},DOLLARDE:{description:"將以分數表示的價格轉換為以小數表示的價格",abstract:"將以分數表示的價格轉換為以小數表示的價格",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dollarde-%E5%87%BD%E6%95%B0-db85aab0-1677-428a-9dfd-a38476693427"}],functionParameter:{fractionalDollar:{name:"分數",detail:"以整數部分和分數部分表示,並以小數點符號分隔的數字。"},fraction:{name:"分母",detail:"用於分數之分母的整數。"}}},DOLLARFR:{description:"將以小數表示的價格轉換為以分數表示的價格",abstract:"將以小數表示的價格轉換為以分數表示的價格",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dollarfr-%E5%87%BD%E6%95%B0-0835d163-3023-4a33-9824-3042c5d4f495"}],functionParameter:{decimalDollar:{name:"小數",detail:"小數。"},fraction:{name:"分母",detail:"用於分數之分母的整數。"}}},DURATION:{description:"返回定期支付利息的債券的每​​年期限",abstract:"返回定期支付利息的債券的每​​年期限",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/duration-%E5%87%BD%E6%95%B0-b254ea57-eadc-4602-a86a-c8e369334038"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},coupon:{name:"年度票息率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},EFFECT:{description:"返回年度有效利率",abstract:"返回年有效利率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/effect-%E5%87%BD%E6%95%B0-910d4e4c-79e2-4009-95e6-507e04f11bc4"}],functionParameter:{nominalRate:{name:"名義利率",detail:"名義利率。"},npery:{name:"期數",detail:"每年以複利計算之期數。"}}},FV:{description:"傳回一筆投資的未來值",abstract:"傳回一筆投資的未來值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fv-%E5%87%BD%E6%95%B0-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},nper:{name:"總期數",detail:"年金的總付款期數。"},pmt:{name:"金額",detail:"各期給付的金額;不得在年金期限內變更。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},FVSCHEDULE:{description:"傳回應用一系列複利率計算的初始本金的未來值",abstract:"傳回應用一系列複利率計算的初始本金的未來值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fvschedule-%E5%87%BD%E6%95%B0-bec29522-bd87-4082-bab9-a241f3fb251d"}],functionParameter:{principal:{name:"初始資金",detail:"現值。"},schedule:{name:"利率陣列",detail:"要套用的利率陣列。"}}},INTRATE:{description:"返回完全投資型債券的利率",abstract:"返回完全投資型債券的利率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/intrate-%E5%87%BD%E6%95%B0-5cb34dde-a221-4cb6-b​​3eb-0b9e55e1316f"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},investment:{name:"投資額",detail:"證券的投資額。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},IPMT:{description:"返回一筆投資在給定期間內支付的利息",abstract:"返回一筆投資在給定期間內支付的利息",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ipmt-%E5%87%BD%E6%95%B0-5cce0ad6-8402-4a41-8d29-61a0b054cb6f"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},per:{name:"期數",detail:"求算利息的期次,其值必須介於1到nper之間。"},nper:{name:"總期數",detail:"年金的總付款期數。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},IRR:{description:"返回一系列現金流的內部收益率",abstract:"返回一系列現金流的內部收益率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/irr-%E5%87%BD%E6%95%B0-64925eaa-9988-495b-b290-3ad0c163c1bc"}],functionParameter:{values:{name:"現金流",detail:`陣列或儲存格參照,其中包含要計算內部報酬率的數字。 +1.Values 必須至少包含一個正數和一個負數,以計算內部報酬率。 +2.IRR 使用 values 的順序來表示現金流量的順序。 請務必依所要的順序輸入支出及收入的值。 +3.如果陣列或參照引數中包含文字、邏輯值或空白儲存格,則這些值將會略過。`},guess:{name:"猜測值",detail:"猜測接近 IRR 結果的數字。"}}},ISPMT:{description:"計算特定投資期間內要支付的利息",abstract:"計算特定投資期間內要支付的利息",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ispmt-%E5%87%BD%E6%95%B0-fa58adb6-9d39-4ce0-8f43-75399cea56cc"}],functionParameter:{rate:{name:"利率",detail:"投資的利率。"},per:{name:"期數",detail:"要尋找利息的期間,其值必須介於1到Nper之間。"},nper:{name:"總期數",detail:"投資的總付款期數。"},pv:{name:"現值",detail:"投資的現值。若為貸款,Pv為貸款金額。"}}},MDURATION:{description:"傳回假設面值為 ¥100 的有價證券的 Macauley 修正期限",abstract:"傳回假設面值為 ¥100 的有價證券的 Macauley 修正期限",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mduration-%E5%87%BD%E6%95%B0-b3786a69-4f20-469a-94ad-33e5b90a763c"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},coupon:{name:"年度票息率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},MIRR:{description:"返回正和負現金流以不同利率進行計算的內部收益率",abstract:"返回正和負現金流以不同利率進行計算的內部收益率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mirr-%E5%87%BD%E6%95%B0-b020f038-7492-4fb4-93c1-35c345b53524"}],functionParameter:{values:{name:"現金流",detail:`陣列或儲存格參照,其中包含數字。 這些數字代表定期發生的一系列支出 (負值) 和收入 (正值)。 +1.Values 必須至少包含一個正值和一個負值,以計算經修改的內部報酬率。 否則,MIRR 會傳回 #DIV/0! 的錯誤值。 +2.如果陣列或參照引數包含文字、邏輯值或空白儲存格,則忽略這些數值;但包含零值儲存格。`},financeRate:{name:"融資利率",detail:"投入資金的融資利率。"},reinvestRate:{name:"轉投資報酬率",detail:"各期收入淨額的轉投資報酬率。"}}},NOMINAL:{description:"返回年度的名目利率",abstract:"返回年度的名目利率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/nominal-%E5%87%BD%E6%95%B0-7f1ae29b-6b92-435e-b950-ad8b190ddd2b"}],functionParameter:{effectRate:{name:"實質利率",detail:"實質利率。"},npery:{name:"期數",detail:"每年以複利計算之期數。"}}},NPER:{description:"返回投資的期數",abstract:"返回投資的期數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/nper-%E5%87%BD%E6%95%B0-240535b5-6653-4d2d-bfcf-b6a38151d815"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},pmt:{name:"金額",detail:"各期給付的金額;不得在年金期限內變更。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},NPV:{description:"傳回以一系列定期的現金流量和折現率計算的投資的淨現值",abstract:"傳回以一系列定期的現金流量和折現率計算的投資的淨現值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/npv-%E5%87%BD%E6%95%B0-8672cb67-2576-4d07-b67b-ac28acf2a568"}],functionParameter:{rate:{name:"貼現率",detail:"一段期間內的貼現率。"},value1:{name:"現金流1",detail:"1 到 254 個代表支出和收入的引數。"},value2:{name:"現金流2",detail:"1 到 254 個代表支出和收入的引數。"}}},ODDFPRICE:{description:"返回每張票面為 ¥100 且第一期為奇數的債券的現價",abstract:"返回每張票面為 ¥100 且第一期為奇數的債券的現價",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oddfprice-%E5%87%BD%E6%95%B0-d7d664a8-34df-4233-8d2b​​-922bcf6a69e1"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},issue:{name:"發行日期",detail:"證券的發行日期。"},firstCoupon:{name:"首次付息日期",detail:"證券的首次付息日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},ODDFYIELD:{description:"傳回第一期為奇數的債券的收益",abstract:"返回第一期為奇數的債券的收益",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oddfyield-%E5%87%BD%E6%95%B0-66bc8b7b-6501-4c93-9ce3-2fd16220fe37"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},issue:{name:"發行日期",detail:"證券的發行日期。"},firstCoupon:{name:"首次付息日期",detail:"證券的首次付息日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},pr:{name:"價格",detail:"證券的價格。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},ODDLPRICE:{description:"返回每張票面為 ¥100 且最後一期為奇數的債券的現價",abstract:"返回每張票面為 ¥100 且最後一期為奇數的債券的現價",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oddlprice-%E5%87%BD%E6%95%B0-fb657749-d200-4902-afaf-ed5445027fc4"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},lastInterest:{name:"最後票息日期",detail:"證券的最後票息日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},ODDLYIELD:{description:"傳回最後一期為奇數的債券的收益",abstract:"返回最後一期為奇數的債券的收益",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oddlyield-%E5%87%BD%E6%95%B0-c873d088-cf40-435f-8d41-c8232fee9238"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},lastInterest:{name:"最後票息日期",detail:"證券的最後票息日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},pr:{name:"價格",detail:"證券的價格。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},PDURATION:{description:"傳回投資到達指定值所需的期數",abstract:"返回投資到達指定值所需的期數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pduration-%E5%87%BD%E6%95%B0-44f33460-5be5-4c90-b857-22308892adaf"}],functionParameter:{rate:{name:"利率",detail:"每期的利率。"},pv:{name:"現值",detail:"投資的現值。"},fv:{name:"未來價值",detail:"投資所需的未來值。"}}},PMT:{description:"返回年金的定期支付金額",abstract:"返回年金的定期支付金額",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pmt-%E5%87%BD%E6%95%B0-0214da64-9a63-4996-bc20-214433fa6441"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},nper:{name:"總期數",detail:"年金的總付款期數。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},PPMT:{description:"返回一筆投資在給定期間內償還的本金",abstract:"返回一筆投資在給定期間內償還的本金",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ppmt-%E5%87%BD%E6%95%B0-c370d9e3-7749-4ca4-beea-b06c6ac95e1b"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},per:{name:"期數",detail:"求算利息的期次,其值必須介於1到nper之間。"},nper:{name:"總期數",detail:"年金的總付款期數。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},PRICE:{description:"返回每張票面為 ¥100 且定期支付利息的債券的現價",abstract:"返回每張票面為 ¥100 且定期支付利息的債券的現價",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/price-%E5%87%BD%E6%95%B0-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},PRICEDISC:{description:"返回每張票面為 ¥100 的已折現債券的現價",abstract:"返回每張票面為 ¥100 的已折現債券的現價",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pricedisc-%E5%87%BD%E6%95%B0-d06ad7c1-380e-4be7-9fd9-75e3079acfd3"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},discount:{name:"貼現率",detail:"證券的貼現率。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},PRICEMAT:{description:"返回每張票面為 ¥100 且在到期日支付利息的債券的現價",abstract:"返回每張票面為 ¥100 且在到期日支付利息的債券的現價",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pricemat-%E5%87%BD%E6%95%B0-52c3b4da-bc7e-476a-989f-a95f675cae77"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},issue:{name:"發行日期",detail:"證券的發行日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},yld:{name:"年收益率",detail:"證券的年收益。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},PV:{description:"返回投資的現值",abstract:"返回投資的現值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pv-%E5%87%BD%E6%95%B0-23879d31-0e02-4321-be01-da16e8168cbd"}],functionParameter:{rate:{name:"利率",detail:"各期的利率。"},nper:{name:"總期數",detail:"年金的總付款期數。"},pmt:{name:"金額",detail:"各期給付的金額;不得在年金期限內變更。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"}}},RATE:{description:"返回年金的各期利率",abstract:"返回年金的各期利率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rate-%E5%87%BD%E6%95%B0-9f665657-4a7e-4bb7-a030-83fc59e748ce"}],functionParameter:{nper:{name:"總期數",detail:"年金的總付款期數。"},pmt:{name:"金額",detail:"各期給付的金額;不得在年金期限內變更。"},pv:{name:"現值",detail:"一系列未來付款的現值或目前總額。"},fv:{name:"餘額",detail:"最後一次付款完成後,所能獲得的未來值或現金餘額。"},type:{name:"類型",detail:"數字0或1,指出付款期限。"},guess:{name:"猜測值",detail:"對利率的猜測值。"}}},RECEIVED:{description:"返回完全投資型債券在到期日收回的金額",abstract:"返回完全投資型債券在到期日收回的金額",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/received-%E5%87%BD%E6%95%B0-7a3f8b93-6611-4f81-8576-828312c9b5e5"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},investment:{name:"投資額",detail:"證券的投資額。"},discount:{name:"貼現率",detail:"證券的貼現率。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},RRI:{description:"返回某項投資成長的等效利率",abstract:"返回某項投資成長的等效利率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rri-%E5%87%BD%E6%95%B0-6f5822d8-7ef1-4233-944c-79e8172930f4"}],functionParameter:{nper:{name:"總期數",detail:"投資的期數。"},pv:{name:"現值",detail:"投資的現值。"},fv:{name:"未來值",detail:"投資的未來值。"}}},SLN:{description:"傳回固定資產的每期線性折舊費",abstract:"返回固定資產的每期線性折舊費",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sln-%E5%87%BD%E6%95%B0-cdb666e5-c1c6-40a7-806a-e695edc2f1c8"}],functionParameter:{cost:{name:"資產原始成本",detail:"資產的原始成本。"},salvage:{name:"資產殘餘價值",detail:"折舊最後的值 (有時稱為資產的殘餘價值)。"},life:{name:"資產使用年限",detail:"固定資產折舊的期數 (有時稱為固定資產的使用年限)。"}}},SYD:{description:"傳回某項固定資產以年限總和折舊法計算的每期折舊金額",abstract:"返回某項固定資產以年限總和折舊法計算的每期折舊金額",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/syd-%E5%87%BD%E6%95%B0-069f8106-b60b-4ca2-98e0-2a0f206bdb27"}],functionParameter:{cost:{name:"資產原始成本",detail:"資產的原始成本。"},salvage:{name:"資產殘餘價值",detail:"折舊最後的值 (有時稱為資產的殘餘價值)。"},life:{name:"資產使用年限",detail:"固定資產折舊的期數 (有時稱為固定資產的使用年限)。"},per:{name:"週期",detail:"週期。"}}},TBILLEQ:{description:"返回國庫券的等價債券收益",abstract:"返回國庫券的等價債券收益",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tbilleq-%E5%87%BD%E6%95%B0-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c"}],functionParameter:{settlement:{name:"結算日期",detail:"國庫券的結算日期。"},maturity:{name:"到期日期",detail:"國庫券的到期日期。"},discount:{name:"貼現率",detail:"國庫券的貼現率。"}}},TBILLPRICE:{description:"傳回面額 ¥100 的國庫券的價格",abstract:"傳回面額 ¥100 的國庫券的價格",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tbillprice-%E5%87%BD%E6%95%B0-eacca992-c29d-425a-9eb8-0513fe6035a2"}],functionParameter:{settlement:{name:"結算日期",detail:"國庫券的結算日期。"},maturity:{name:"到期日期",detail:"國庫券的到期日期。"},discount:{name:"貼現率",detail:"國庫券的貼現率。"}}},TBILLYIELD:{description:"返回國庫券的收益率",abstract:"返回國庫券的收益率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tbillyield-%E5%87%BD%E6%95%B0-6d381232-f4b0-4cd5-8e97-45b9c03468ba"}],functionParameter:{settlement:{name:"結算日期",detail:"國庫券的結算日期。"},maturity:{name:"到期日期",detail:"國庫券的到期日期。"},pr:{name:"價格",detail:"國庫債券每 $100 美元面額的價格。"}}},VDB:{description:"使用餘額遞減法,傳回一筆資產在給定期間或部分期間內的折舊值",abstract:"使用餘額遞減法,傳回一筆資產在給定期間或部分期間內的折舊值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/vdb-%E5%87%BD%E6%95%B0-dde4e207-f3fa-488d-91d2-66d55e861d73"}],functionParameter:{cost:{name:"成本",detail:"資產的原始成本。"},salvage:{name:"殘值",detail:"折舊最後的值 (有時稱為資產的殘餘價值)。"},life:{name:"使用年限",detail:"資產折舊的期數 (有時稱為資產的使用年限)。"},startPeriod:{name:"開始期間",detail:"要計算折舊的開始期間。"},endPeriod:{name:"結束期間",detail:"要計算折舊的結束期間。"},factor:{name:"速率",detail:"餘額遞減的速率。如果省略factor,將假設其值為2(倍率遞減法)。"},noSwitch:{name:"不切換",detail:"用於指定當折舊大於遞減餘額計算時,是否切換到直線折舊法的邏輯值。"}}},XIRR:{description:"返回一組現金流的內部收益率,這些現金流不一定會定期發生",abstract:"返回一組現金流的內部收益率,這些現金流不一定會定期發生",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/xirr-%E5%87%BD%E6%95%B0-de1242ec-6477-445b-b11b-a303ad9adc9d"}],functionParameter:{values:{name:"現金流",detail:"一系列與 dates 的付款日期對應的現金流。第一次付款是選擇性的,而且與投資開始時的成本和付款對應。如果第一個值是成本或付款,則它必須是負值。而之後的付款都會以一年 365 天為基礎來折算。序列值必須至少包括一個正值和一個負值。"},dates:{name:"日期表",detail:"一系列與現金流對應的付款日期。日期可能會以任何順序發生。"},guess:{name:"猜測值",detail:"所猜測接近 XIRR 結果的數字。"}}},XNPV:{description:"傳回一組現金流的淨現值,這些現金流不一定會定期發生",abstract:"傳回一組現金流的淨現值,這些現金流不一定會定期發生",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/xnpv-%E5%87%BD%E6%95%B0-1b42bbf6-370f-4532-a0eb-d67c16b664b7"}],functionParameter:{rate:{name:"貼現率",detail:"要套用到現金流的貼現率。"},values:{name:"現金流",detail:"一系列與 dates 的付款日期對應的現金流。第一次付款是選擇性的,而且與投資開始時的成本和付款對應。如果第一個值是成本或付款,則它必須是負值。而之後的付款都會以一年 365 天為基礎來折算。序列值必須至少包括一個正值和一個負值。"},dates:{name:"日期表",detail:"一系列與現金流對應的付款日期。日期可能會以任何順序發生。"}}},YIELD:{description:"返回定期支付利息的債券的收益",abstract:"返回定期支付利息的債券的收益",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/yield-%E5%87%BD%E6%95%B0-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},pr:{name:"價格",detail:"證券每 $100 面額的價格。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},frequency:{name:"頻次",detail:"每年票息付款的次數。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},YIELDDISC:{description:"返回已折現債券的年收益;例如,短期國庫券",abstract:"返回已折現債券的年收益;例如,短期國庫券",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/yielddisc-%E5%87%BD%E6%95%B0-a9dbdbae-7dae-46de-b995-615faffaaed7"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},pr:{name:"價格",detail:"證券每 $100 面額的價格。"},redemption:{name:"贖回價",detail:"證券到期時的贖回價值。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}},YIELDMAT:{description:"返回在到期日支付利息的債券的年收益",abstract:"返回在到期日支付利息的債券的年收益",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/yieldmat-%E5%87%BD%E6%95%B0-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f"}],functionParameter:{settlement:{name:"結算日期",detail:"證券的結算日期。"},maturity:{name:"到期日期",detail:"證券的到期日期。"},issue:{name:"發行日期",detail:"證券的發行日期。"},rate:{name:"利率",detail:"證券的年度票息率。"},pr:{name:"價格",detail:"證券每 $100 面額的價格。"},basis:{name:"基礎",detail:"要使用的日計數基礎類型。"}}}},...{DATE:{description:"採用三個單獨的值並將它們合併為一個日期。 ",abstract:"傳回特定日期的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/date-%E5%87%BD%E6%95%B0-e36c0c8c-4104-49da-ab83-82328b832349"}],functionParameter:{year:{name:"年",detail:"可以包含 1 到 4 位數字。 Excel 會根據電腦使用的日期系統解釋 year 參數。 預設情況下,Univer 使用 1900 日期系統,這表示第一個日期是 1900 年 1 月 1 日。 "},month:{name:"月",detail:"一個正整數或負整數,表示一年中從 1 月至 12 月(一月到十二月)的各個月。 "},day:{name:"日",detail:"一個正整數或負整數,表示一月中從 1 日到 31 日的各天。 "}}},DATEDIF:{description:"計算兩個日期之間的天數、月數或年數。 此函數在用於計算年齡的公式中很有用。 ",abstract:"計算兩個日期之間的天數、月數或年數。 此函數在用於計算年齡的公式中很有用。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/datedif-%E5%87%BD%E6%95%B0-25dba1a4-2812-480b-84dd-8b32a451b35c"}],functionParameter:{startDate:{name:"開始日期",detail:"代表指定期間的第一個或開始日期的日期。"},endDate:{name:"結束日期",detail:"代表期間最後一個或結束日期的日期。"},method:{name:"資訊類型",detail:"要傳回的資訊類型"}}},DATEVALUE:{description:"將文字格式的日期轉換為序號。 ",abstract:"將文字格式的日期轉換為序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/datevalue-%E5%87%BD%E6%95%B0-df8b07d4-7761-4a93-bc33-b7471bbff252"}],functionParameter:{dateText:{name:"日期文本",detail:`表示 Excel 日期格式的日期的文本,或對包含表示 Excel 日期格式的日期的文本的單元格的引用。 例如,「1/30/2008」或「30-Jan-2008」是表示日期的引號內的文字字串。 +使用 Microsoft Excel for Windows 中的預設日期系統, date_text 參數必須表示 1900 年 1 月 1 日至 9999 年 12 月 31 日的日期。 DATEVALUE 函數回傳 #VALUE! 如果 date_text 參數的值超出此範圍,則為 error 值。 +如果省略參數 date_text 中的年份部分,則 DATEVALUE 函數會使用電腦內建時鐘的目前年份。 參數 date_text 中的時間資訊將被忽略。 `}}},DAY:{description:"傳回以序列數表示的某日期的天數。天數是介於 1 到 31 之間的整數。 ",abstract:"將序號轉換為月份日期",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/day-%E5%87%BD%E6%95%B0-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},DAYS:{description:"傳回兩個日期之間的天數",abstract:"傳回兩個日期之間的天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/days-%E5%87%BD%E6%95%B0-57740535-d549-4395-8728-0f07bff0b9df"}],functionParameter:{endDate:{name:"結束日期",detail:"為欲求其相距天數的兩個日期。"},startDate:{name:"開始日期",detail:"為欲求其相距天數的兩個日期。"}}},DAYS360:{description:"以一年 360 天為基準計算兩個日期間的天數",abstract:"以一年 360 天為基準計算兩個日期間的天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/days360-%E5%87%BD%E6%95%B0-b9a509fd-49ef-407e-94df-0cbda5718c2a"}],functionParameter:{startDate:{name:"開始日期",detail:"為欲求其相距天數的兩個日期。"},endDate:{name:"結束日期",detail:"為欲求其相距天數的兩個日期。"},method:{name:"方法",detail:"用來指定是否要使用美制 或歐制之計算方法的邏輯值。"}}},EDATE:{description:"傳回表示某個日期的序號,該日期與指定日期 (start_date) 相隔(之前或之後)所指示的月份數。 使用函數 EDATE 可以計算與發行日處於一月中同一天的到期日的日期。 ",abstract:"傳回用於表示開始日期之前或之後月數的日期的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/edate-%E5%87%BD%E6%95%B0-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5"}],functionParameter:{startDate:{name:"開始日期",detail:"一個代表開始日期的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "},months:{name:"月份數",detail:"Start Date 之前或之後的月份數。 Months 為正值將產生未來日期;為負值將產生過去日期。 "}}},EOMONTH:{description:"傳回指定月數之前或之後的月份的最後一天的序號",abstract:"傳回指定月數之前或之後的月份的最後一天的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/eomonth-%E5%87%BD%E6%95%B0-7314ffa1-2bc9-4005-9d66-f49db127d628"}],functionParameter:{startDate:{name:"開始日期",detail:"此為代表開始日期的日期。"},months:{name:"月份數",detail:"開始日期之前或之後的月份數。"}}},EPOCHTODATE:{description:"將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式",abstract:"將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式",links:[{title:"教導",url:"https://support.google.com/docs/answer/13193461?hl=zh-Hant&sjid=2155433538747546473-AP"}],functionParameter:{timestamp:{name:"時間戳記",detail:"以秒、毫秒或微秒為單位的 Unix Epoch 紀元時間戳記。"},unit:{name:"時間單位",detail:`時間戳記的表示單位。預設值是 1: +1 表示以秒為單位。 +2 表示以毫秒為單位。 +3 表示以微秒為單位。`}}},HOUR:{description:"將序號轉換為小時",abstract:"將序號轉換為小時",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hour-%E5%87%BD%E6%95%B0-a3afa879-86cb-4339-b1b5-2dd2d7310ac7"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},ISOWEEKNUM:{description:"返回給定日期在全年中的 ISO 週數",abstract:"返回給定日期在全年中的 ISO 週數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/isoweeknum-%E5%87%BD%E6%95%B0-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e"}],functionParameter:{date:{name:"日期",detail:"用於日期和時間計算的日期時間代碼。"}}},MINUTE:{description:"將序號轉換為分鐘",abstract:"將序號轉換為分鐘",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/minute-%E5%87%BD%E6%95%B0-af728df0-05c4-4b07-9eed-a84801a60589"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},MONTH:{description:"傳回日期(以序列數表示)中的月份。 月份是介於 1(一月)到 12(十二月)之間的整數。 ",abstract:"將序號轉換為月",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/month-%E5%87%BD%E6%95%B0-579a2881-199b-48b2-ab90-ddba0eba86e8"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的月份的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},NETWORKDAYS:{description:"傳回兩個日期間的完整工作日的天數",abstract:"返回兩個日期間的完整工作日的天數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/networkdays-%E5%87%BD%E6%95%B0-48e717bf-a7a3-495f-969e-5005e3eb18e7"}],functionParameter:{startDate:{name:"開始日期",detail:"代表開始日期的日期。"},endDate:{name:"結束日期",detail:"代表結束日期的日期。"},holidays:{name:"假日",detail:"要從工作行事曆中排除之一個或多個日期的選擇性範圍。"}}},NETWORKDAYS_INTL:{description:"傳回兩個日期之間的完整工作日的天數(使用參數指明週末有幾天並指明是哪幾天)",abstract:"傳回兩個日期之間的完整工作日的天數(使用參數指明週末有幾天並指明是哪幾天)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/networkdays-intl-%E5%87%BD%E6%95%B0-a9b26239-4f20-46a1-9ab8-4e925bfd5e28"}],functionParameter:{startDate:{name:"開始日期",detail:"代表開始日期的日期。"},endDate:{name:"結束日期",detail:"代表結束日期的日期。"},weekend:{name:"週末",detail:"是指定何時是週末的數字或字串。"},holidays:{name:"假日",detail:"要從工作行事曆中排除之一個或多個日期的選擇性範圍。"}}},NOW:{description:"傳回目前日期和時間的序號。 ",abstract:"傳回目前日期和時間的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/now-%E5%87%BD%E6%95%B0-3337fd29-145a-4347-b2e6-2​​0c904739c46"}],functionParameter:{}},SECOND:{description:"將序號轉換為秒",abstract:"將序號轉換為秒",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/second-%E5%87%BD%E6%95%B0-740d1cfc-553c-4099-b668-80eaa24e8af1"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},TIME:{description:"傳回特定時間的序號。 ",abstract:"傳回特定時間的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/time-%E5%87%BD%E6%95%B0-9a5aff99-8f7d-4611-845e-747d0b8d5457"}],functionParameter:{hour:{name:"小時",detail:"0(零)到 32767 之間的數字,代表小時。 任何大於 23 的值都會除以 24,餘數將作為小時值。 例如,TIME(27,0,0) = TIME(3,0,0) = .125 或 3:00 AM。 "},minute:{name:"分鐘",detail:" 0 到 32767 之間的數字,代表分鐘。 任何大於 59 的值將轉換為小時和分鐘。 例如,TIME(0,750,0) = TIME(12,30,0) = .520833 或 12:30 PM。 "},second:{name:"秒",detail:"0 到 32767 之間的數字,代表秒。 任何大於 59 的值將轉換為小時、分鐘和秒。 例如,TIME(0,0,2000) = TIME(0,33,22) = .023148 或 12:33:20 AM。 "}}},TIMEVALUE:{description:"將文字格式的時間轉換為序號。 ",abstract:"將文字格式的時間轉換為序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/timevalue-%E5%87%BD%E6%95%B0-0b615c12-33d8-4431-bf3d-f3eb6d186645"}],functionParameter:{timeText:{name:"時間文字",detail:'以任何一種時間格式表示的文字字串;例如,"6:45 PM" 和 "18:45",引號中的文字字串表示時間。'}}},TO_DATE:{description:"將指定數字轉換成日期",abstract:"將指定數字轉換成日期",links:[{title:"教導",url:"https://support.google.com/docs/answer/3094239?hl=zh-Hant&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"值",detail:"要轉換成日期的引數或儲存格參照。"}}},TODAY:{description:"傳回今天日期的序號",abstract:"傳回今天日期的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/today-%E5%87%BD%E6%95%B0-5eb3078d-a82c-4736-8930-2f51a028fdd9"}],functionParameter:{}},WEEKDAY:{description:"將序號轉換為星期日期",abstract:"將序號轉換為星期日期",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/weekday-%E5%87%BD%E6%95%B0-60e44483-2ed1-439f-8bd0-e404c190949a"}],functionParameter:{serialNumber:{name:"日期序列值",detail:"代表要尋找之該天日期的序列值。"},returnType:{name:"傳回值類型",detail:"決定傳回值類型的數字。"}}},WEEKNUM:{description:"將序號轉換為代表該星期為一年中第幾週的數字",abstract:"將序號轉換為代表該星期為一年中第幾週的數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/weeknum-%E5%87%BD%E6%95%B0-e5c43a03-b4ab-426c-b411-b18c13c75340"}],functionParameter:{serialNumber:{name:"日期序列值",detail:"一週中的日期。"},returnType:{name:"傳回值類型",detail:"決定一週從星期幾開始的數字。 預設值為 1。"}}},WORKDAY:{description:"傳回指定的若干個工作天之前或之後的日期的序號",abstract:"傳回指定的若干個工作天之前或之後的日期的序號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/workday-%E5%87%BD%E6%95%B0-f764a5b7-05fc-4494-9486-60d494efbf33"}],functionParameter:{startDate:{name:"開始日期",detail:"代表開始日期的日期。"},days:{name:"天數",detail:"開始日期之前或之後的非週末和非假日的天數。正值代表未來的日期;負值代表過去的日期。"},holidays:{name:"假日",detail:"要從工作行事曆中排除之一個或多個日期的選擇性範圍。"}}},WORKDAY_INTL:{description:"傳回日期在指定的工作日天數之前或之後的序號(使用參數指明週末有幾天並指明是哪幾天)",abstract:"返回日期在指定的工作日天數之前或之後的序號(使用參數指明週末有幾天並指明是哪幾天)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/workday-intl-%E5%87%BD%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d"}],functionParameter:{startDate:{name:"開始日期",detail:"代表開始日期的日期。"},days:{name:"天數",detail:"開始日期之前或之後的非週末和非假日的天數。正值代表未來的日期;負值代表過去的日期。"},weekend:{name:"週末",detail:"是指定何時是週末的數字或字串。"},holidays:{name:"假日",detail:"要從工作行事曆中排除之一個或多個日期的選擇性範圍。"}}},YEAR:{description:"傳回對應於某個日期的年份。 Year 以 1900 - 9999 之間的整數傳回。 ",abstract:"將序號轉換為年",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/year-%E5%87%BD%E6%95%B0-c64f017a-1354-490d-981f-578e8ec8d3b9"}],functionParameter:{serialNumber:{name:"日期序號",detail:"要找的年份的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 "}}},YEARFRAC:{description:"傳回代表 start_date 和 end_date 之間整天天數的年分數",abstract:"傳回代表 start_date 和 end_date 之間整天天數的年分數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/yearfrac-%E5%87%BD%E6%95%B0-3844141e-c76d-4143-82b6-208454ddc6a8"}],functionParameter:{startDate:{name:"开始日期",detail:"代表開始日期的日期。"},endDate:{name:"结束日期",detail:"代表結束日期的日期。"},basis:{name:"基礎類型",detail:"要使用的日計數基礎類型。"}}}},...{ABS:{description:"傳回數字的絕對值。一個數字的絕對值是該數字不帶其符號的形式。 ",abstract:"傳回數字的絕對值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/abs-%E5%87%BD%E6%95%B0-3420200f-5628-4e8c-99da-c99d7c87713c"}],functionParameter:{number:{name:"數值",detail:"需要計算其絕對值的實數。 "}}},ACOS:{description:"傳回數字的反餘弦值。 反餘弦值是指餘弦值為 number 的角度。 傳回的角度以弧度表示,弧度值在 0(零)到 pi 之間。 ",abstract:"傳回數字的反餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/acos-%E5%87%BD%E6%95%B0-cb73173f-d089-4582-afa1-76e5524b5d5b"}],functionParameter:{number:{name:"數值",detail:"所求角度的餘弦值,必須介於 -1 到 1 之間。 "}}},ACOSH:{description:"傳回數字的反雙曲餘弦值。 該數字必須大於或等於 1。 反雙曲餘弦值是指雙曲餘弦值為 number 的值,因此 ACOSH(COSH(number)) 等於 number。 ",abstract:"傳回數字的反雙曲餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/acosh-%E5%87%BD%E6%95%B0-e3992cc1-103f-4e72-9f04-624b9ef5ebfe"}],functionParameter:{number:{name:"數值",detail:"大於或等於 1 的任意實數。 "}}},ACOT:{description:"傳回數字的反餘切值的主值。 ",abstract:"傳回一個數的反餘切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/acot-%E5%87%BD%E6%95%B0-dc7e5008-fe6b-402e-bdd6-2eea8383d905"}],functionParameter:{number:{name:"數值",detail:"數字是需要的角度的正切值。 這必須是實數。 "}}},ACOTH:{description:"傳回一個數的雙曲反餘切值",abstract:"傳回一個數的雙曲反餘切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/acoth-%E5%87%BD%E6%95%B0-cc49480f-f684-4171-9fc5-73e4e852300f"}],functionParameter:{number:{name:"數值",detail:"數字的絕對值必須大於 1。"}}},AGGREGATE:{description:"傳回清單或資料庫中的聚合",abstract:"傳回清單或資料庫中的聚合",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/aggregate-%E5%87%BD%E6%95%B0-43b9278e-6aa7-4f17-92b6-e19993fa26df"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ARABIC:{description:"將羅馬數字轉換為阿拉伯數字",abstract:"將羅馬數字轉換為阿拉伯數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/arabic-%E5%87%BD%E6%95%B0-9a8da418-c17b-4ef9-a657-9370a30a674f"}],functionParameter:{text:{name:"文字",detail:"以引弧括住的字串、空字串 (“) ,或包含文字的單元格參照。"}}},ASIN:{description:"傳回數字的反正弦值",abstract:"傳回數字的反正弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/asin-%E5%87%BD%E6%95%B0-81fb95e5-6d6f-48c4-bc45-58f955c6d347"}],functionParameter:{number:{name:"數值",detail:"欲求角度的正弦值,其值必須介於 -1 到 1。"}}},ASINH:{description:"傳回數字的反雙曲正弦值",abstract:"傳回數字的反雙曲正弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/asinh-%E5%87%BD%E6%95%B0-4e00475a-067a-43cf-926a-765b0249717c"}],functionParameter:{number:{name:"數值",detail:"任意實數。"}}},ATAN:{description:"傳回數字的反正切值",abstract:"傳回數字的反正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/atan-%E5%87%BD%E6%95%B0-50746fa8-630a-406b-81d0-4a2aed395543"}],functionParameter:{number:{name:"數值",detail:"欲求角度的正切值。"}}},ATAN2:{description:"傳回 X 和 Y 座標的反正切值",abstract:"傳回 X 和 Y 座標的反正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/atan2-%E5%87%BD%E6%95%B0-c04592ab-b9e3-4908-b428-c96b3a565033"}],functionParameter:{xNum:{name:"x 座標",detail:"點的 X 座標。"},yNum:{name:"y 座標",detail:"點的 Y 座標。"}}},ATANH:{description:"傳回數字的反雙曲正切值",abstract:"傳回數字的反雙曲正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/atanh-%E5%87%BD%E6%95%B0-3cd65768-0de7-4f1d-b312-d01c8c930d90"}],functionParameter:{number:{name:"數值",detail:"任何介於 1 和 -1 之間的實數。"}}},BASE:{description:"將一個數轉換為具有給定基數的文字表示",abstract:"將一個數轉換為具有給定基數的文字表示",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/base-%E5%87%BD%E6%95%B0-2ef61411-aee9-4f29-a811-1c42456c6342"}],functionParameter:{number:{name:"數值",detail:"要轉換的數位。必須是大於或等於 0 且小於 2^53 的整數。"},radix:{name:"基數",detail:"要將數字轉換為底數的基數。必須是大於或等於 2 且小於或等於 36 的整數。"},minLength:{name:"最小長度",detail:"傳回之字串的最小長度。必須是大於或等於 0 的整數。"}}},CEILING:{description:"將數字舍入為最接近的整數或最接近的指定基數的倍數",abstract:"將數字舍入為最接近的整數或最接近的指定基數的倍數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ceiling-%E5%87%BD%E6%95%B0-0a5cd7c8-0720-4f0a-bd2c-c943e510899f"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"}}},CEILING_MATH:{description:"將數字向上捨入為最接近的整數或最接近的指定基數的倍數",abstract:"將數字向上捨入為最接近的整數或最接近的指定基數的倍數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ceiling-math-%E5%87%BD%E6%95%B0-80f95d2f-b499-4eee-9f16-f795a8e306c8"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"},mode:{name:"眾數",detail:"對於負數,請控制數位是否趨於或背離於零。"}}},CEILING_PRECISE:{description:"將數字舍入為最接近的整數或最接近的指定基數的倍數。 無論該數字的符號為何,該數字都向上捨入。 ",abstract:"將數字捨去為最接近的整數或最接近的指定基數的倍數。 無論該數字的符號為何,該數字都向上捨入。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ceiling-precise-%E5%87%BD%E6%95%B0-f366a774-527a-4c92-ba49-af0a196e66cb"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"}}},COMBIN:{description:"傳回給定數目物件的組合數",abstract:"傳回給定數目物件的組合數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/combin-%E5%87%BD%E6%95%B0-12a3f276-0a21-423a-8de6-06990aaf638a"}],functionParameter:{number:{name:"總數",detail:"項目數。"},numberChosen:{name:"樣品數量",detail:"每個組合中的項目數。"}}},COMBINA:{description:"傳回給定數目物件具有重複項的組合數",abstract:"傳回給定數目物件具有重複項的組合數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/combina-%E5%87%BD%E6%95%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d"}],functionParameter:{number:{name:"總數",detail:"項目數。"},numberChosen:{name:"樣品數量",detail:"每個組合中的項目數。"}}},COS:{description:"傳回數字的餘弦值",abstract:"傳回數字的餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cos-%E5%87%BD%E6%95%B0-0fb808a5-95d6-4553-8148-22aebdce5f05"}],functionParameter:{number:{name:"數值",detail:"欲求算其餘弦值的角度,以弧度表示。"}}},COSH:{description:"傳回數字的雙曲餘弦值",abstract:"傳回數字的雙曲餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cosh-%E5%87%BD%E6%95%B0-e460d426-c471-43e8-9540-a57ff3b70555"}],functionParameter:{number:{name:"數值",detail:"欲求得其雙曲線餘弦值的任意實數。"}}},COT:{description:"返回角度的餘弦值",abstract:"返回角度的餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cot-%E5%87%BD%E6%95%B0-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a"}],functionParameter:{number:{name:"數值",detail:"欲求餘切值的角度,以弧度表示。"}}},COTH:{description:"傳回數字的雙曲餘切值",abstract:"傳回數字的雙曲餘切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/coth-%E5%87%BD%E6%95%B0-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5"}],functionParameter:{number:{name:"數值",detail:"想要求雙曲餘切的任意實數。"}}},CSC:{description:"傳回角度的餘割值",abstract:"傳回角度的餘值值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/csc-%E5%87%BD%E6%95%B0-07379361-219a-4398-8675-07ddc4f135c1"}],functionParameter:{number:{name:"數值",detail:"想要求餘割的角度,以弧度表示。"}}},CSCH:{description:"返回角度的雙曲餘割值",abstract:"返回角度的雙曲餘割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/csch-%E5%87%BD%E6%95%B0-f58f2c22-eb75-4dd6-84f4-a503527f8eeb"}],functionParameter:{number:{name:"數值",detail:"想要求雙曲餘割值的角度,以弧度表示。"}}},DECIMAL:{description:"將給定基數內的數的文字表示轉換為十進制數",abstract:"將給定基數內的數的文字表示轉換為十進制數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/decimal-%E5%87%BD%E6%95%B0-ee554665-6176-46ef-82de-0a283658da2e"}],functionParameter:{text:{name:"字串",detail:"字串長度必須小於或等於 255 個字元。"},radix:{name:"基數",detail:"要將數字轉換為底數的基數。 必須是大於或等於 2 且小於或等於 36 的整數。"}}},DEGREES:{description:"將弧度轉換為度",abstract:"將弧度轉換為度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/degrees-%E5%87%BD%E6%95%B0-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1"}],functionParameter:{angle:{name:"角度",detail:"要轉換的角度,以弧度表示。"}}},EVEN:{description:"將數字向上捨入到最接近的偶數",abstract:"將數字向上捨入到最接近的偶數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/even-%E5%87%BD%E6%95%B0-197b5f06-c795-4c1e-8696-3c3b8a646cf9"}],functionParameter:{number:{name:"數值",detail:"要捨入的數值。"}}},EXP:{description:"返回e的 n 次方",abstract:"返回e的 n 次方",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/exp-%E5%87%BD%E6%95%B0-c578f034-2c45-4c37-bc8c-329660a63abe"}],functionParameter:{number:{name:"數值",detail:"套用至基數 e 的指數。"}}},FACT:{description:"傳回數字的階乘",abstract:"傳回數字的階乘",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fact-%E5%87%BD%E6%95%B0-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3"}],functionParameter:{number:{name:"數值",detail:"要階乘的非負數數字。 如果數字不是整數,則只會取整數。"}}},FACTDOUBLE:{description:"傳回數字的雙倍階乘",abstract:"傳回數字的雙倍階乘",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/factdouble-%E5%87%BD%E6%95%B0-e67697ac-d214-48eb-b7b7-cce2589ecac8"}],functionParameter:{number:{name:"數值",detail:"要雙倍階乘的非負數數字。 如果數字不是整數,則只會取整數。"}}},FLOOR:{description:"向絕對值減小的方向舍入數字",abstract:"向絕對值減小的方向捨去數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/floor-%E5%87%BD%E6%95%B0-14bb497c-24f2-4e04-b327-b0b4de5a8886"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"}}},FLOOR_MATH:{description:"將數字向下捨去為最接近的整數或最接近的指定基數的倍數",abstract:"將數字向下捨去為最接近的整數或最接近的指定基數的倍數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/floor-math-%E5%87%BD%E6%95%B0-c302b599-fbdb-4177-ba19-2c2b1249a2f5"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"},mode:{name:"眾數",detail:"對於負數,請控制數位是否趨於或背離於零。"}}},FLOOR_PRECISE:{description:"將數字向下捨去為最接近的整數或最接近的指定基數的倍數。 無論該數字的符號為何,該數字都向下捨去。 ",abstract:"將數字向下捨去為最接近的整數或最接近的指定基數的倍數。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/floor-precise-%E5%87%BD%E6%95%B0-f769b468-1452-4617-8dc3-02f842a0702e"}],functionParameter:{number:{name:"數值",detail:"要捨位的數值。"},significance:{name:"倍數",detail:"要捨位的倍數。"}}},GCD:{description:"傳回最大公約數",abstract:"傳回最大公約數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gcd-%E5%87%BD%E6%95%B0-d5107a51-69e3-461f-8e4c-ddfc21b5073a"}],functionParameter:{number1:{name:"數值1",detail:"用於計算的第一項數值或範圍。"},number2:{name:"數值2",detail:"用於計算的其他數值或範圍。"}}},INT:{description:"將數字向下捨去到最接近的整數",abstract:"將數字向下捨去到最接近的整數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/int-%E5%87%BD%E6%95%B0-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef"}],functionParameter:{number:{name:"數值",detail:"要將數字向下捨去到最接近的整數的實數。"}}},ISO_CEILING:{description:"傳回一個數字,該數字向上捨入為最接近的整數或最接近的有效位的倍數",abstract:"傳回一個數字,該數字向上捨入為最接近的整數或最接近的有效位的倍數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/iso-ceiling-%E5%87%BD%E6%95%B0-e587bb73-6cc2-4113-b664-ff5b09859a83"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LCM:{description:"傳回最小公倍數",abstract:"傳回最小公倍數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lcm-%E5%87%BD%E6%95%B0-7152b67a-8bb5-4075-ae5c-06ede5563c94"}],functionParameter:{number1:{name:"數值1",detail:"用於計算的第一項數值或範圍。"},number2:{name:"數值2",detail:"用於計算的其他數值或範圍。"}}},LET:{description:"將名稱指派給計算結果,以允許將中間計算、值或定義名稱儲存在公式內",abstract:"將名稱指派給計算結果,以允許將中間計算、值或定義名稱儲存在公式內",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/let-%E5%87%BD%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},LN:{description:"傳回數字的自然對數",abstract:"傳回數字的自然對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ln-%E5%87%BD%E6%95%B0-81fe1ed7-dac9-4acd-ba1d-07a142c6118f"}],functionParameter:{number:{name:"數值",detail:"要求得自然對數的正實數。"}}},LOG:{description:"傳回數字的以指定底為底的對數",abstract:"傳回數字的以指定底為底的對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/log-%E5%87%BD%E6%95%B0-4e82f196-1ca9-4747-8fb0-6c4a3abb3280"}],functionParameter:{number:{name:"數值",detail:"要求得對數的正實數。"},base:{name:"底數",detail:"對數的底數。 如果省略 base,則假設其值為 10。"}}},LOG10:{description:"傳回數字的以 10 為底的對數",abstract:"傳回數字的以 10 為底的對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/log10-%E5%87%BD%E6%95%B0-c75b881b-49dd-44fb-b6f4-37e3486a0211"}],functionParameter:{number:{name:"數值",detail:"要求得底數為 10 之對數的正實數。"}}},MDETERM:{description:"傳回數組的矩陣行列式的值",abstract:"傳回陣列的矩陣行列式的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mdeterm-%E5%87%BD%E6%95%B0-e7bfa857-3834-422b-b871-0ffd03717020"}],functionParameter:{array:{name:"陣列",detail:"具有相同列數與欄數的數值陣列。"}}},MINVERSE:{description:"傳回數組的逆矩陣",abstract:"傳回數組的逆矩陣",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/minverse-%E5%87%BD%E6%95%B0-11f55086-adde-4c9f-8eb9-59da2d72efc6"}],functionParameter:{array:{name:"陣列",detail:"具有相同列數與欄數的數值陣列。"}}},MMULT:{description:"傳回兩個陣列的矩陣乘積",abstract:"傳回兩個陣列的矩陣乘積",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mmult-%E5%87%BD%E6%95%B0-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb"}],functionParameter:{array1:{name:"陣列1",detail:"要相乘的陣列。"},array2:{name:"陣列2",detail:"要相乘的陣列。"}}},MOD:{description:"傳回兩數相除的餘數。 結果的符號與除數相同。 ",abstract:"傳回除法的餘數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mod-%E5%87%BD%E6%95%B0-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3"}],functionParameter:{number:{name:"數值",detail:"要計算餘數的被除數"},divisor:{name:"除數",detail:"除數"}}},MROUND:{description:"傳回一個捨入到所需倍數的數字",abstract:"傳回一個捨去到所需倍數的數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mround-%E5%87%BD%E6%95%B0-c299c3b0-15a5-426d-aa4b-d2d5b3baf427"}],functionParameter:{number:{name:"數值",detail:"要捨入的數值。"},multiple:{name:"倍數",detail:"要捨入數字的倍數。"}}},MULTINOMIAL:{description:"傳回一組數字的多項式",abstract:"傳回一組數字的多項式",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/multinomial-%E5%87%BD%E6%95%B0-6fa6373c-6533-41a2-a45e-a56db1db1bf6"}],functionParameter:{number1:{name:"數值1",detail:"用於計算的第一項數值或範圍。"},number2:{name:"數值2",detail:"用於計算的其他數值或範圍。"}}},MUNIT:{description:"返回單位矩陣或指定維度",abstract:"返回單位矩陣或指定維度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/munit-%E5%87%BD%E6%95%B0-c9fe916a-dc26-4105-997d-ba22799853a3"}],functionParameter:{dimension:{name:"维度",detail:"是指定要傳回之單位矩陣維度的整數。 它會傳回陣列。 維度必須大於零。"}}},ODD:{description:"將數字向上捨入為最接近的奇數",abstract:"將數字向上捨入為最接近的奇數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/odd-%E5%87%BD%E6%95%B0-deae64eb-e08a-4c88-8b40-6d0b42575c98"}],functionParameter:{number:{name:"數值",detail:"要捨入的數值。"}}},PI:{description:"傳回 pi 的值",abstract:"傳回 pi 的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pi-%E5%87%BD%E6%95%B0-264199d0-a3ba-46b8-975a-c4a04608989b"}],functionParameter:{}},POWER:{description:"傳回數字乘冪的結果。 ",abstract:"回傳數的乘冪",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/power-%E5%87%BD%E6%95%B0-d3f2908b-56f4-4c3f-895a-07fb519c362a"}],functionParameter:{number:{name:"數值",detail:"基數。可為任意實數。"},power:{name:"指數",detail:"基數乘冪運算的指數。"}}},PRODUCT:{description:"將作為參數提供的所有數字相乘,並傳回乘積。 ",abstract:"將其參數相乘",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/product-%E5%87%BD%E6%95%B0-8e6b5b24-90ee-4650-aeec-80982a0512ce"}],functionParameter:{number1:{name:"數值 1",detail:"要相乘的第一個數字或範圍。"},number2:{name:"數值 2",detail:"要相乘的其他數字或儲存格區域,最多可以使用 255 個參數。"}}},QUOTIENT:{description:"傳回除法的整數部分",abstract:"傳回除法的整數部分",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/quotient-%E5%87%BD%E6%95%B0-9f7bf099-2a18-4282-8fa4-65290cc99dee"}],functionParameter:{numerator:{name:"分子",detail:"被除數。"},denominator:{name:"分母",detail:"除數。"}}},RADIANS:{description:"將度轉換為弧度",abstract:"將度轉換為弧度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/radians-%E5%87%BD%E6%95%B0-ac409508-3d48-45f5-ac02-1497c92de5bf"}],functionParameter:{angle:{name:"角度",detail:"要轉換的角度 (以度數為單位)。"}}},RAND:{description:"傳回 0 和 1 之間的一個隨機數",abstract:"傳回 0 和 1 之間的隨機數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rand-%E5%87%BD%E6%95%B0-4cbfa695-8869-4788-8d90-021ea9f5be73"}],functionParameter:{}},RANDARRAY:{description:"RANDARRAY 函數傳回 0 和 1 之間的隨機數字數組。但是,你可以指定要填滿的行數和列數、最小值和最大值,以及是否會傳回整個數字或小數值。",abstract:"RANDARRAY 函數傳回 0 和 1 之間的隨機數字數組。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/randarray-%E5%87%BD%E6%95%B0-21261e55-3bec-4885-86a6-8b0a47fd4d33"}],functionParameter:{rows:{name:"列數",detail:"要傳回的列數"},columns:{name:"欄數",detail:"要傳回的欄數"},min:{name:"最小值",detail:"想要傳回的最小數字"},max:{name:"最大值",detail:"想要傳回的最大數字"},wholeNumber:{name:"整數",detail:"傳回整數或小數數值"}}},RANDBETWEEN:{description:"傳回位於兩個指定數之間的一個隨機數",abstract:"傳回位於兩個指定數之間的一個隨機數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/randbetween-%E5%87%BD%E6%95%B0-4cc7f0d1-87dc-4eb7-987f-a469ab381685"}],functionParameter:{bottom:{name:"最小值",detail:"會傳回的最小整數。"},top:{name:"最大值",detail:"會傳回的最大整數。"}}},ROMAN:{description:"將阿拉伯數字轉換為文本式羅馬數字",abstract:"將阿拉伯數字轉換為文本式羅馬數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/roman-%E5%87%BD%E6%95%B0-d6b0b99e-de46-4704-a518-b45a0f8b56f5"}],functionParameter:{number:{name:"數值",detail:"這是要轉換的阿拉伯數字。"},form:{name:"形式",detail:"這是指定所需羅馬數字類型的數字。羅馬數位風格從經典到簡化,隨著形式值的增加而變得更加簡潔。"}}},ROUND:{description:"將數字按指定位數舍入",abstract:"將數字依指定位數捨去",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/round-%E5%87%BD%E6%95%B0-c018c5d8-40fb-4053-90b1-b3e7f61a213c"}],functionParameter:{number:{name:"數值",detail:"要四捨五入的數字。"},numDigits:{name:"位數",detail:"要對數字引數進位的位數。"}}},ROUNDBANK:{description:"依照「四舍六入五成雙」舍入數字",abstract:"依照「四舍六入五成雙」舍入數字",links:[{title:"教導",url:""}],functionParameter:{number:{name:"數值",detail:"要「四舍六入五成雙」的數字。"},numDigits:{name:"位數",detail:"要進行「四舍六入五成雙」運算的位數。"}}},ROUNDDOWN:{description:"向絕對值減小的方向舍入數字",abstract:"向絕對值減小的方向捨去數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rounddown-%E5%87%BD%E6%95%B0-2ec94c73-241f-4b01-8c6f-17e6d7968f53"}],functionParameter:{number:{name:"數值",detail:"要四捨五入的數字。"},numDigits:{name:"位數",detail:"要對數字引數進位的位數。"}}},ROUNDUP:{description:"向絕對值增大的方向舍入數字",abstract:"向絕對值增大的方向舍入數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/roundup-%E5%87%BD%E6%95%B0-f8bc9b23-e795-47db-8703-db171d0c42a7"}],functionParameter:{number:{name:"數值",detail:"要四捨五入的數字。"},numDigits:{name:"位數",detail:"要對數字引數進位的位數。"}}},SEC:{description:"傳回角度的正割值",abstract:"返回角度的正割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sec-%E5%87%BD%E6%95%B0-ff224717-9c87-4170-9b58-d069ced6d5f7"}],functionParameter:{number:{name:"數值",detail:"數值是要求得正割值的角度,以弧度表示。"}}},SECH:{description:"返回角度的雙曲正割值",abstract:"返回角度的雙曲正割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sech-%E5%87%BD%E6%95%B0-e05a789f-5ff7-4d7f-984a-5edb9b09556f"}],functionParameter:{number:{name:"數值",detail:"數值是要求得雙曲正割值的角度,以弧度表示。"}}},SERIESSUM:{description:"傳回基於公式的冪級數的和",abstract:"傳回基於公式的冪級數的和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/seriessum-%E5%87%BD%E6%95%B0-a3ab25b5-1093-4f5b-b084-96c49087f637"}],functionParameter:{x:{name:"x",detail:"冪級數的輸入值。"},n:{name:"n",detail:"要增加 x 的初始乘冪。"},m:{name:"m",detail:"要將級數中的每一項增加 n 所用的間距。"},coefficients:{name:"係數集",detail:"一組由 x 的每一個連續乘冪相乘的係數集。"}}},SEQUENCE:{description:"SEQUENCE 函數可在陣列中產生一系列連續數字,例如,1、2、3、4。 ",abstract:"SEQUENCE 函數可在陣列中產生一系列連續數字,例如,1、2、3、4。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sequence-%E5%87%BD%E6%95%B0-57467a98-57e0-4817-9f14-2eb78519ca90"}],functionParameter:{rows:{name:"列數",detail:"要傳回的列數。"},columns:{name:"欄數",detail:"要傳回的欄數。"},start:{name:"起始數字",detail:"連續值的第一個數字。"},step:{name:"遞增量",detail:"陣列中每個連續值遞增的量。"}}},SIGN:{description:"傳回數字的符號",abstract:"傳回數字的符號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sign-%E5%87%BD%E6%95%B0-109c932d-fcdc-4023-91f1-2dd0e916a1d8"}],functionParameter:{number:{name:"數值",detail:"任意實數。"}}},SIN:{description:"傳回給定角度的正弦值",abstract:"傳回給定角度的正弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sin-%E5%87%BD%E6%95%B0-cf0e3432-8b9e-483c-bc55-a76651c95602"}],functionParameter:{number:{name:"數值",detail:"要求出正弦值的角度,以弧度表示。"}}},SINH:{description:"傳回數字的雙曲正弦值",abstract:"傳回數字的雙曲正弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sinh-%E5%87%BD%E6%95%B0-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7"}],functionParameter:{number:{name:"數值",detail:"任意實數。"}}},SQRT:{description:"返回正平方根",abstract:"返回正平方根",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sqrt-%E5%87%BD%E6%95%B0-654975c2-05c4-4831-9a24-2c65e4040fdf"}],functionParameter:{number:{name:"數值",detail:"要求得平方根的數字。"}}},SQRTPI:{description:"傳回某數與 pi 的乘積的平方根",abstract:"傳回某數與 pi 的乘積的平方根",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sqrtpi-%E5%87%BD%E6%95%B0-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4"}],functionParameter:{number:{name:"數值",detail:"要乘以 pi 的數值。"}}},SUBTOTAL:{description:"傳回清單或資料庫中的分類總計。 ",abstract:"傳回清單或資料庫中的分類總和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/subtotal-%E5%87%BD%E6%95%B0-7b027003-f060-4ade-9040-e478765b9939"}],functionParameter:{functionNum:{name:"函數編號",detail:"數字 1-11 或 101-111,用於指定要為分類總和所使用的函數。 如果使用 1-11,將包括手動隱藏的行,如果使用 101-111,則排除手動隱藏的行;始終排除已篩選掉的儲存格。 "},ref1:{name:"引用1",detail:"要對其進行分類總和計算的第一個命名區域或引用。 "},ref2:{name:"引用2",detail:"要對其進行分類匯總計算的第 2 個至第 254 個命名區域或引用。 "}}},SUM:{description:"將單一值、儲存格引用或是區域相加,或將三者的組合相加。 ",abstract:"求參數的和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sum-%E5%87%BD%E6%95%B0-043e1c7d-7726-4e80-8f32-07b23e057f89"}],functionParameter:{number1:{name:"數值 1",detail:"要相加的第一個數字。 該數字可以是 4 之類的數字,B6 之類的單元格引用或 B2:B8 之類的單元格範圍。 "},number2:{name:"數值 2",detail:"第二個要相加的數字。 可以按照這種方式指定最多 255 個數字。 "}}},SUMIF:{description:"範圍中符合指定條件的值求和。 ",abstract:"按給定條件對指定單元格求和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumif-%E5%87%BD%E6%95%B0-169b8c99-c05c-4483-a712-1697a653039b"}],functionParameter:{range:{name:"範圍",detail:"要根據條件進行偵測的範圍。 "},criteria:{name:"條件",detail:"以數字、表達式、單元格引用、文字或函數的形式來定義將要新增哪些單元格。可包含的通配符字符 - 問號(?)以匹配任意單個字符,星號(*)以匹配任意字符序列。 如果要尋找實際的問號或星號,請在該字元前鍵入波形符號(~)。 "},sumRange:{name:"求和範圍",detail:"要新增的實際儲存格,如果要新增在範圍參數指定以外的其他儲存格。 如果省略sum_range參數,Excel就會加入範圍參數中指定的儲存格(與套用標準的儲存格相同)。 "}}},SUMIFS:{description:"會加總符合多項準則的所有引數。",abstract:"會加總符合多項準則的所有引數。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumifs-%E5%87%BD%E6%95%B0-c9e748f5-7ea7-455d-9406-611cebce642b"}],functionParameter:{sumRange:{name:"求和範圍",detail:"要求和的單元格區域。 "},criteriaRange1:{name:"條件範圍 1",detail:"使用條件 1 測試的區域。條件範圍 1 和條件 1 設定用於搜尋某個區域是否符合特定條件的搜尋對。 一旦在該區域中找到了項,將計算求和範圍中的相應值的總和。 "},criteria1:{name:"條件 1",detail:'定義將計算條件範圍 1 中的哪些單元格的和的條件。 例如,條件可以輸入為 32、">32"、B4、"蘋果" 或 "32"。 '},criteriaRange2:{name:"條件範圍 2",detail:"附加的區域,最多可以輸入 127 個區域。 "},criteria2:{name:"條件 2",detail:"附加的關聯條件,最多可以輸入 127 個條件。 "}}},SUMPRODUCT:{description:"傳回對應的陣列元素的乘積和",abstract:"傳回對應的陣列元素的乘積和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumproduct-%E5%87%BD%E6%95%B0-16753e75-9f68-4874-94ac-4d2145a2fd2e"}],functionParameter:{array1:{name:"陣列",detail:"要求元素乘積和的第一個陣列引數。"},array2:{name:"陣列",detail:"要求元素乘積和的第 2 個到第 255 個陣列引數。"}}},SUMSQ:{description:"傳回參數的平方和",abstract:"傳回參數的平方和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumsq-%E5%87%BD%E6%95%B0-e3313c02-51cc-4963-aae6-31442d9ec307"}],functionParameter:{number1:{name:"數值1",detail:"要求出平方總和的第1個數字。也可以使用單一陣列或陣列參照來取代以逗點分隔的引數。"},number2:{name:"數值2",detail:"要求出平方總和的第2個數字。可以按照這種方式指定最多 255 個數字。"}}},SUMX2MY2:{description:"傳回兩數組中對應值平方差之和",abstract:"傳回兩數組中對應值平方差之和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumx2my2-%E5%87%BD%E6%95%B0-9e599cc5-5399-48e9-a5e0-e37812dfa3e9"}],functionParameter:{arrayX:{name:"值陣列1",detail:"第一個值陣列或範圍。"},arrayY:{name:"值陣列2",detail:"第二個值陣列或範圍。"}}},SUMX2PY2:{description:"傳回兩數組中對應值的平方和總和",abstract:"傳回兩數組中對應值的平方和總和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumx2py2-%E5%87%BD%E6%95%B0-826b60b4-0aa2-4e5e-81d2-be704d3d786f"}],functionParameter:{arrayX:{name:"值陣列1",detail:"第一個值陣列或範圍。"},arrayY:{name:"值陣列2",detail:"第二個值陣列或範圍。"}}},SUMXMY2:{description:"傳回兩個陣列中對應值差的平方和",abstract:"傳回兩個陣列中對應值差的平方和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sumxmy2-%E5%87%BD%E6%95%B0-9d144ac1-4d79-43de-b524-e2ecee23b299"}],functionParameter:{arrayX:{name:"值陣列1",detail:"第一個值陣列或範圍。"},arrayY:{name:"值陣列2",detail:"第二個值陣列或範圍。"}}},TAN:{description:"傳回數字的正切值",abstract:"傳回數字的正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tan-%E5%87%BD%E6%95%B0-08851a40-179f-4052-b789-d7f699447401"}],functionParameter:{number:{name:"數值",detail:"要求出正切值的角度,以弧度表示。"}}},TANH:{description:"傳回數字的雙曲正切值",abstract:"傳回數字的雙曲正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tanh-%E5%87%BD%E6%95%B0-017222f0-a0c3-4f69-9787-b3202295dc6c"}],functionParameter:{number:{name:"數值",detail:"任意實數。"}}},TRUNC:{description:"將數字截尾取整",abstract:"將數字截尾取整",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/trunc-%E5%87%BD%E6%95%B0-8b86a64c-3127-43db-ba14-aa5ceb292721"}],functionParameter:{number:{name:"數值",detail:"要取至整數的數字。"},numDigits:{name:"位數",detail:"指定要捨去之精確位數的數字。其預設值為 0 (零)。"}}}},...{AVEDEV:{description:"傳回資料點與它們的平均值的絕對偏差平均值。 ",abstract:"返回資料點與它們的平均值的絕對偏差平均值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/avedev-%E5%87%BD%E6%95%B0-58fe8d65-2a84-4dc7-8052-f3f87b5c6639"}],functionParameter:{number1:{name:"數值 1",detail:"要計算平均值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},AVERAGE:{description:"傳回參數的平均值(算術平均值)。 ",abstract:"傳回其參數的平均值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/average-%E5%87%BD%E6%95%B0-047bac88-d466-426c-a32b-8f33eb960cf6"}],functionParameter:{number1:{name:"數值 1",detail:"要計算平均值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},AVERAGE_WEIGHTED:{description:"可在已知實際數值和對應權重的情況下,用來求得多項數值的加權平均值",abstract:"可在已知實際數值和對應權重的情況下,用來求得多項數值的加權平均值",links:[{title:"教導",url:"https://support.google.com/docs/answer/9084098?hl=zh-Hant&ref_topic=3105600&sjid=2155433538747546473-AP"}],functionParameter:{values:{name:"值",detail:"要計算平均值的數值。"},weights:{name:"權重",detail:"要套用的權重對應清單。"},additionalValues:{name:"其他值",detail:"要計算平均值的其他值。"},additionalWeights:{name:"其他權重",detail:"要套用的其他權重。"}}},AVERAGEA:{description:"傳回其參數的平均值,包括數字、文字和邏輯值。 ",abstract:"傳回其參數的平均值,包括數字、文字和邏輯值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/averagea-%E5%87%BD%E6%95%B0-f5f84098-d453-4f4c-bbba-3d2c66356091"}],functionParameter:{value1:{name:"值 1",detail:"要計算平均值的第一個數字、儲存格參考或儲存格區域。 "},value2:{name:"值 2",detail:"要計算平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},AVERAGEIF:{description:"返回區域中滿足給定條件的所有單元格的平均值(算術平均值)。 ",abstract:"返回區域中滿足給定條件的所有單元格的平均值(算術平均值)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/averageif-%E5%87%BD%E6%95%B0-faec8e2e-0dec-4308-af69-f5576d8ac642"}],functionParameter:{range:{name:"範圍",detail:"要計算平均值的一個或多個儲存格,其中包含數字或包含數字的名稱、陣列或參考。 "},criteria:{name:"條件",detail:'形式為數字、表達式、儲存格引用或文字的條件,用來定義將計算平均值的儲存格。 例如,條件可以表示為 32、"32"、">32"、"蘋果" 或 B4。 '},averageRange:{name:"平均範圍",detail:"計算平均值的實際單元格組。 如果省略,則使用 range。 "}}},AVERAGEIFS:{description:"傳回滿足多個條件的所有儲存格的平均值(算術平均值)。 ",abstract:"返回所有滿足多個條件的單元格的平均值(算術平均值)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/averageifs-%E5%87%BD%E6%95%B0-48910c45-1fc0-4389-a028-f7c5c3001690"}],functionParameter:{averageRange:{name:"平均值範圍",detail:"要計算平均值的一個或多個單元格,其中包含數字或包含數字的名稱、數組或引用。 "},criteriaRange1:{name:"條件範圍 1",detail:"是一組用於條件計算的單元格。 "},criteria1:{name:"條件 1",detail:'用來定義將計算平均值的儲存格。 例如,條件可以表示為 32、"32"、">32"、"蘋果" 或 B4'},criteriaRange2:{name:"條件範圍 2",detail:"附加區域。 最多可輸入 127 個區域。 "},criteria2:{name:"條件 2",detail:"附加關聯條件。 最多可以輸入 127 個條件。 "}}},BETA_DIST:{description:"傳回 beta 累積分佈函數",abstract:"傳回 beta 累積分佈函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/beta-dist-%E5%87%BD%E6%95%B0-11188c9c-780a-42c7-ba43-9ecb5a878d31"}],functionParameter:{x:{name:"值",detail:"用來計算其函數的值,介於下限值和上限值之間。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 BETA.DIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"},A:{name:"下限",detail:"函數的下限,預設值為 0。"},B:{name:"上限",detail:"函數的上限,預設值為 1。"}}},BETA_INV:{description:"傳回指定 beta 分佈的累積分佈函數的反函數",abstract:"傳回指定 beta 分佈的累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/beta-inv-%E5%87%BD%E6%95%B0-e84cb8aa-8df0-4cf6-9892-83a341d252eb"}],functionParameter:{probability:{name:"機率",detail:"beta 分佈的相關機率。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},A:{name:"下限",detail:"函數的下限,預設值為 0。"},B:{name:"上限",detail:"函數的上限,預設值為 1。"}}},BINOM_DIST:{description:"傳回一元二項式分佈的機率",abstract:"傳回一元二項式分佈的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/binom-dist-%E5%87%BD%E6%95%B0-c5ae37b6-f39c-4be2-94c2-509a1480770c"}],functionParameter:{numberS:{name:"成功次數",detail:"為實驗的成功次數。"},trials:{name:"實驗次數",detail:"為獨立實驗的次數。"},probabilityS:{name:"成功機率",detail:"每一次實驗的成功機率。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 BINOM.DIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},BINOM_DIST_RANGE:{description:"使用二項式分佈傳回試驗結果的機率",abstract:"使用二項式分佈返回試驗結果的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/binom-dist-range-%E5%87%BD%E6%95%B0-17331329-74c7-4053-bb4c-6653a7421595"}],functionParameter:{trials:{name:"實驗次數",detail:"為獨立實驗的次數。"},probabilityS:{name:"成功機率",detail:"每一次實驗的成功機率。"},numberS:{name:"成功次數",detail:"為實驗的成功次數。"},numberS2:{name:"最大成功次數",detail:"如果提供,會傳回成功試驗次數落在 成功次數 和 最大成功次數 之間的機率。"}}},BINOM_INV:{description:"傳回使累積二項式分佈小於或等於臨界值的最小值",abstract:"傳回使累積二項式分佈小於或等於臨界值的最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/binom-inv-%E5%87%BD%E6%95%B0-80a0370c-ada6-49b4-83e7-05a91ba77ac9"}],functionParameter:{trials:{name:"實驗次數",detail:"伯努利實驗的次數。"},probabilityS:{name:"成功機率",detail:"每一次實驗的成功機率。"},alpha:{name:"目標機率",detail:"臨界值。"}}},CHISQ_DIST:{description:"傳回 χ2 分佈的左尾機率。",abstract:"傳回 χ2 分佈的左尾機率。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chisq-dist-%E5%87%BD%E6%95%B0-8486b05e-5c05-4942-a9ea-f6b341518732"}],functionParameter:{x:{name:"值",detail:"用來評估分佈的值。"},degFreedom:{name:"自由度",detail:"自由度。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,CHISQ.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},CHISQ_DIST_RT:{description:"傳回 χ2 分佈的右尾機率。",abstract:"傳回 χ2 分佈的右尾機率。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chisq-dist-rt-%E5%87%BD%E6%95%B0-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2"}],functionParameter:{x:{name:"值",detail:"用來評估分佈的值。"},degFreedom:{name:"自由度",detail:"自由度。"}}},CHISQ_INV:{description:"傳回 χ2 分佈的左尾機率的反函數值。",abstract:"傳回 χ2 分佈的左尾機率的反函數值。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chisq-inv-%E5%87%BD%E6%95%B0-400db556-62b3-472d-80b3-254723e7092f"}],functionParameter:{probability:{name:"機率",detail:"與 χ2 分佈相關聯的機率。"},degFreedom:{name:"自由度",detail:"自由度。"}}},CHISQ_INV_RT:{description:"傳回 χ2 分佈的右尾機率的反函數值。",abstract:"傳回 χ2 分佈的右尾機率的反函數值。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chisq-inv-rt-%E5%87%BD%E6%95%B0-435b5ed8-98d5-4da6-823f-293e2cbc94fe"}],functionParameter:{probability:{name:"機率",detail:"與 χ2 分佈相關聯的機率。"},degFreedom:{name:"自由度",detail:"自由度。"}}},CHISQ_TEST:{description:"返回獨立性檢驗值",abstract:"返回獨立性檢驗值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chisq-test-%E5%87%BD%E6%95%B0-2e8a7861-b14a-4985-aa93-fb88de3f260f"}],functionParameter:{actualRange:{name:"觀察範圍",detail:"觀察值範圍,用來檢定預期值。"},expectedRange:{name:"預期範圍",detail:"資料範圍,其內容為各欄總和乘各列總和後的值,再除以全部值總和的比率。"}}},CONFIDENCE_NORM:{description:"使用常態分佈傳回總體平均值的置信區間。",abstract:"使用常態分佈傳回總體平均值的置信區間。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/confidence-norm-%E5%87%BD%E6%95%B0-7cec58a6-85bb-488d-91c3-63828d4fbfd4"}],functionParameter:{alpha:{name:"alpha",detail:"用於計算置信水準的顯著水準。置信水準等於 100*(1 - alpha)%,換句話說,alpha 0.05 表示信賴水準為 95%。"},standardDev:{name:"總體標準差",detail:"假設資料範圍的總體標準差已知。"},size:{name:"樣本大小",detail:"樣本大小。"}}},CONFIDENCE_T:{description:"傳回總體平均值的置信區間(使用學生 t-分佈)",abstract:"傳回總體平均值的置信區間(使用學生 t-分佈)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/confidence-t-%E5%87%BD%E6%95%B0-e8eca395-6c3a-4ba9-9003-79ccc61d3c53"}],functionParameter:{alpha:{name:"alpha",detail:"用於計算置信水準的顯著水準。置信水準等於 100*(1 - alpha)%,換句話說,alpha 0.05 表示信賴水準為 95%。"},standardDev:{name:"總體標準差",detail:"假設資料範圍的總體標準差已知。"},size:{name:"樣本大小",detail:"樣本大小。"}}},CORREL:{description:"傳回兩個資料集之間的相關係數",abstract:"傳回兩個資料集之間的相關係數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/correl-%E5%87%BD%E6%95%B0-995dcef7-0c0a-4bed-a3fb-239d7b68ca92"}],functionParameter:{array1:{name:"陣列1",detail:"第一個儲存格值範圍。"},array2:{name:"陣列2",detail:"第二個儲存格值範圍。"}}},COUNT:{description:"計算包含數字的單元格數以及參數列表中數字的個數。 ",abstract:"計算參數清單中數字的個數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/count-%E5%87%BD%E6%95%B0-a59cd7fc-b623-4d93-87a4-d23bf411294c"}],functionParameter:{value1:{name:"值 1",detail:"要計算其中數字的數量的第一項、單元格引用或區域。 "},value2:{name:"值 2",detail:"要計算其中數字的個數的其他項目、儲存格參考或區域,最多可包含 255 個。 "}}},COUNTA:{description:`計算包含任何類型的資訊(包括錯誤值和空白文字 (""))的儲存格 + 如果不需要對邏輯值、文字或錯誤值進行計數(換句話說,只希望對包含數字的儲存格進行計數),請使用 COUNT 函數。 `,abstract:"計算參數清單中值的個數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/counta-%E5%87%BD%E6%95%B0-7dc98875-d5c1-46f1-9a82-53f3219e2509"}],functionParameter:{number1:{name:"數值 1",detail:"必填。 表示要計數的值的第一個參數"},number2:{name:"數值 2",detail:"可選。 表示要計數的值的其他參數,最多可包含 255 個參數。 "}}},COUNTBLANK:{description:"計算區域內空白單元格的數量。 ",abstract:"計算區域內空白儲存格的數量",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/countblank-%E5%87%BD%E6%95%B0-6a92d772-675c-4bee-b346-24af6bd3ac22"}],functionParameter:{range:{name:"範圍",detail:"需要計算其中空白單元格數的區域。 "}}},COUNTIF:{description:"計算區域內符合給定條件的單元格的數量。 ",abstract:"計算區域內符合給定條件的單元格的數量",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/countif-%E5%87%BD%E6%95%B0-e0de10c6-f885-4e71-abb4-1f464816df34"}],functionParameter:{range:{name:"範圍",detail:"要進行計數的單元格組。 區域可以包括數字、陣列、命名區域或包含數字的引用。 空白和文字值將被忽略。 "},criteria:{name:"條件",detail:`用來決定要統計哪些儲存格的數量的數字、表達式、儲存格參考或文字字串。 +例如,可以使用 32 之類數字,「>32」之類比較,B4 之類單元格,或「蘋果」之類單字。 +COUNTIF 只使用一個條件。 如果要使用多個條件,請使用 COUNTIFS。 `}}},COUNTIFS:{description:"計算區域內符合多個條件的單元格的數量。 ",abstract:"計算區域內符合多個條件的單元格的數量",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/countifs-%E5%87%BD%E6%95%B0-dda3dc6e-f74e-4aee-88bc-aa8c2a866842"}],functionParameter:{criteriaRange1:{name:"條件範圍 1",detail:"在其中計算關聯條件的第一個區域。 "},criteria1:{name:"條件 1",detail:'條件的形式為數字、表達式、單元格引用或文本,它定義了要計數的單元格範圍。 例如,條件可以表示為 32、">32"、B4、"apples"或 "32"。 '},criteriaRange2:{name:"條件範圍 2",detail:"附加區域。 最多可輸入 127 個區域。 "},criteria2:{name:"條件 2",detail:"附加關聯條件。 最多可以輸入 127 個條件。 "}}},COVARIANCE_P:{description:"傳回總體協方差,即兩個資料集中每對資料點的偏差乘積的平均值。",abstract:"傳回總體協方差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/covariance-p-%E5%87%BD%E6%95%B0-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc"}],functionParameter:{array1:{name:"陣列1",detail:"第一個儲存格值範圍。"},array2:{name:"陣列2",detail:"第二個儲存格值範圍。"}}},COVARIANCE_S:{description:"傳回樣本協方差,即兩個資料集中每對資料點的偏差乘積的平均值。",abstract:"傳回樣本協方差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/covariance-s-%E5%87%BD%E6%95%B0-0a539b74-7371-42aa-a18f-1f5320314977"}],functionParameter:{array1:{name:"陣列1",detail:"第一個儲存格值範圍。"},array2:{name:"陣列2",detail:"第二個儲存格值範圍。"}}},DEVSQ:{description:"傳回偏差的平方和",abstract:"傳回偏差的平方和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/devsq-%E5%87%BD%E6%95%B0-8b739616-8376-4df5-8bd0-cfe0a6caf444"}],functionParameter:{number1:{name:"數值1",detail:"要計算平方差之總和的第 1 個引數。"},number2:{name:"數值2",detail:"要計算平方差之總和的第 2 到 255 個引數。"}}},EXPON_DIST:{description:"傳回指數分佈",abstract:"傳回指數分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/expon-dist-%E5%87%BD%E6%95%B0-4c12ae24-e563-4155-bf3e-8b78b6ae140e"}],functionParameter:{x:{name:"值",detail:"用來評估分佈的值。"},lambda:{name:"lambda",detail:"參數值。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,EXPON.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},F_DIST:{description:"傳回 F 機率分佈",abstract:"傳回 F 機率分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/f-dist-%E5%87%BD%E6%95%B0-a887efdc-7c8e-46cb-a74a-f884cd29b25d"}],functionParameter:{x:{name:"值",detail:"用於評估函數的值。"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,F.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},F_DIST_RT:{description:"傳回 F 機率分佈(右尾)",abstract:"傳回 F 機率分佈(右尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/f-dist-rt-%E5%87%BD%E6%95%B0-d74cbb00-6017-4ac9-b7d7-6049badc0520"}],functionParameter:{x:{name:"值",detail:"用於評估函數的值。"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"}}},F_INV:{description:"傳回 F 機率分佈的反函數",abstract:"傳回 F 機率分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/f-inv-%E5%87%BD%E6%95%B0-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe"}],functionParameter:{probability:{name:"機率",detail:"F 累積分佈相關的機率"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"}}},F_INV_RT:{description:"傳回 F 機率分佈(右尾)的反函數",abstract:"傳回 F 機率分佈(右尾)的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/f-inv-rt-%E5%87%BD%E6%95%B0-d371aa8f-b0b1-40ef-9cc2-496f0693ac00"}],functionParameter:{probability:{name:"機率",detail:"F 累積分佈相關的機率"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"}}},F_TEST:{description:"傳回 F 檢驗的結果",abstract:"傳回 F 檢驗的結果",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/f-test-%E5%87%BD%E6%95%B0-100a59e7-4108-46f8-8443-78ffacb6c0a7"}],functionParameter:{array1:{name:"陣列1",detail:"第一個陣列或資料範圍。"},array2:{name:"陣列2",detail:"第二個陣列或資料範圍。"}}},FISHER:{description:"傳回 Fisher 變換值",abstract:"傳回 Fisher 變換值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fisher-%E5%87%BD%E6%95%B0-d656523c-5076-4f95-b87b-7741bf236c69"}],functionParameter:{x:{name:"數值",detail:"要轉換的數值。"}}},FISHERINV:{description:"傳回 Fisher 變換的反函數",abstract:"傳回 Fisher 變換的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fisherinv-%E5%87%BD%E6%95%B0-62504b39-415a-4284-a285-19c8e82f86bb"}],functionParameter:{y:{name:"數值",detail:"要執行反轉換的數值。"}}},FORECAST:{description:"返回線性趨勢值",abstract:"返回線性趨勢值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"要預測值的資料點。"},knownYs:{name:"陣列_y",detail:"代表因變數資料的陣列或矩陣的範圍。"},knownXs:{name:"陣列_x",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},FORECAST_ETS:{description:"透過使用指數平滑 (ETS) 演算法的 AAA 版本,傳回基於現有(歷史)值的未來值",abstract:"透過使用指數平滑 (ETS) 演算法的 AAA 版本,傳回基於現有(歷史)值的未來值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/%E9%A2%84%E6%B5%8B%E5%87%BD%E6%95%B0-%E5%8F%82 %E8%80%83-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_CONFINT:{description:"傳回指定目標日期預測值的置信區間",abstract:"傳回指定目標日期預測值的置信區間",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/%E9%A2%84%E6%B5%8B%E5%87%BD%E6%95%B0-%E5%8F%82 %E8%80%83-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_SEASONALITY:{description:"傳回 Excel 針對指定時間系列偵測到的重複模式的長度",abstract:"傳回 Excel 針對指定時間系列偵測到的重複模式的長度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/%E9%A2%84%E6%B5%8B%E5%87%BD%E6%95%B0-%E5%8F%82 %E8%80%83-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_ETS_STAT:{description:"傳回作為時間序列預測的結果的統計值。 ",abstract:"傳回作為時間序列預測的結果的統計值。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/%E9%A2%84%E6%B5%8B%E5%87%BD%E6%95%B0-%E5%8F%82 %E8%80%83-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},FORECAST_LINEAR:{description:"傳回基於現有值的未來值",abstract:"傳回基於現有值的未來值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99"}],functionParameter:{x:{name:"x",detail:"要預測值的資料點。"},knownYs:{name:"陣列_y",detail:"代表因變數資料的陣列或矩陣的範圍。"},knownXs:{name:"陣列_x",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},FREQUENCY:{description:"以垂直數組的形式傳回頻率分佈",abstract:"以垂直數組的形式傳回頻率分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/frequency-%E5%87%BD%E6%95%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9"}],functionParameter:{dataArray:{name:"資料陣列",detail:"所要計算頻率的一組數值的陣列或參照。 如果 data_array 沒有值,FREQUENCY 會傳回零陣列。"},binsArray:{name:"區間陣列",detail:"區間的陣列或參照,用以將 data_array 中的值分組。 如果 bins_array 沒有值,FREQUENCY 會傳回 data_array 中的元素個數。"}}},GAMMA:{description:"傳回 γ 函數值",abstract:"傳回 γ 函數值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gamma-%E5%87%BD%E6%95%B0-ce1702b1-cf55-471d-8307-f83be0fc5297"}],functionParameter:{number:{name:"數值",detail:"伽瑪函數的輸入值。"}}},GAMMA_DIST:{description:"傳回 γ 分佈",abstract:"傳回 γ 分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gamma-dist-%E5%87%BD%E6%95%B0-9b6f1538-d11c-4d5f-8966-21f6a2201def"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 GAMMA.DIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},GAMMA_INV:{description:"傳回 γ 累積分佈函數的反函數",abstract:"傳回 γ 累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gamma-inv-%E5%87%BD%E6%95%B0-74991443-c2b0-4be5-aaab-1aa4d71fbb18"}],functionParameter:{probability:{name:"機率",detail:"與伽瑪分佈的相關機率。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"}}},GAMMALN:{description:"傳回 γ 函數的自然對數,Γ(x)",abstract:"傳回 γ 函數的自然對數,Γ(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gammaln-%E5%87%BD%E6%95%B0-b838c48b-c65f-484f-9e1d-141c55470eb9"}],functionParameter:{x:{name:"x",detail:"要計算 GAMMALN 的值。"}}},GAMMALN_PRECISE:{description:"傳回 γ 函數的自然對數,Γ(x)",abstract:"傳回 γ 函數的自然對數,Γ(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gammaln-precise-%E5%87%BD%E6%95%B0-5cdfe601-4e1e-4189-9d74-241ef1caa599"}],functionParameter:{x:{name:"x",detail:"要計算 GAMMALN.PRECISE 的值。"}}},GAUSS:{description:"傳回小於標準常態累積分佈 0.5 的值",abstract:"傳回小於標準常態累積分佈 0.5 的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gauss-%E5%87%BD%E6%95%B0-069f1b4e-7dee-4d6a-a71f-4b69044a6b33"}],functionParameter:{z:{name:"z",detail:"要找出分佈的數值。"}}},GEOMEAN:{description:"返回幾何平均值",abstract:"返回幾何平均",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/geomean-%E5%87%BD%E6%95%B0-db1ac48d-25a5-40a0-ab83-0b38980e40d5"}],functionParameter:{number1:{name:"數值 1",detail:"要計算幾何平均值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算幾何平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},GROWTH:{description:"返回指數趨勢值",abstract:"返回指數趨勢值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/growth-%E5%87%BD%E6%95%B0-541a91dc-3d5e-437d-b156-21324e68b80d"}],functionParameter:{knownYs:{name:"已知資料_y",detail:"在 y = b*m^x 關係中一組已知的 y 值。"},knownXs:{name:"已知資料_x",detail:"在 y = b*m^x 關係中一組已知的 x 值。"},newXs:{name:"新資料_x",detail:"要 GROWTH 傳回對應 y 值的新 x 值。"},constb:{name:"b",detail:"指定是否強迫常數 b 等於 1 的邏輯值。"}}},HARMEAN:{description:"返回調和平均值",abstract:"返回調和平均",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/harmean-%E5%87%BD%E6%95%B0-5efd9184-fab5-42f9-b1d3-57883a1d3bc6"}],functionParameter:{number1:{name:"數值 1",detail:"要計算調和平均值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算調和平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},HYPGEOM_DIST:{description:"返回超幾何分佈",abstract:"返回超幾何分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hypgeom-dist-%E5%87%BD%E6%95%B0-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf"}],functionParameter:{sampleS:{name:"樣本成功次數",detail:"樣本中成功的次數。"},numberSample:{name:"樣本大小",detail:"樣本大小。"},populationS:{name:"總體成功次數",detail:"總體中成功的次數。"},numberPop:{name:"總體大小",detail:"總體大小。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 HYPGEOM.DIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},INTERCEPT:{description:"傳回線性迴歸線的截距",abstract:"返回線性迴歸線的截距",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/intercept-%E5%87%BD%E6%95%B0-2a9b74e2-9d47-4772-b663-3bca70bf63ef"}],functionParameter:{knownYs:{name:"陣列_y",detail:"代表因變數資料的陣列或矩陣的範圍。"},knownXs:{name:"陣列_x",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},KURT:{description:"傳回資料集的峰值",abstract:"返回資料集的峰值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/kurt-%E5%87%BD%E6%95%B0-bc3a265c-5da4-4dcb-b7fd-c237789095ab"}],functionParameter:{number1:{name:"數值 1",detail:"要計算峰值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算峰值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},LARGE:{description:"返回資料集中第 k 個最大值",abstract:"返回資料集中第 k 個最大值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/large-%E5%87%BD%E6%95%B0-3af0af19-1190-42bb-bb8b-01672ec00a64"}],functionParameter:{array:{name:"陣列",detail:"要判斷第 k 個最大值的陣列或資料範圍。"},k:{name:"k",detail:"要傳回之資料陣列或儲存格範圍中的位置 (由最大起算)。"}}},LINEST:{description:"傳回線性趨勢的參數",abstract:"返回線性趨勢的參數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/linest-%E5%87%BD%E6%95%B0-84d7d0d9-6e50-4101-977a-fa7abf772b6d"}],functionParameter:{knownYs:{name:"已知資料_y",detail:"在 y = m*x+b 關係中一組已知的 y 值。"},knownXs:{name:"已知資料_x",detail:"在 y = m*x+b 關係中一組已知的 x 值。"},constb:{name:"b",detail:"指定是否強迫常數 b 等於 0 的邏輯值。"},stats:{name:"統計",detail:"指定是否要傳回額外迴歸統計值的邏輯值。"}}},LOGEST:{description:"傳回指數趨勢的參數",abstract:"傳回指數趨勢的參數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/logest-%E5%87%BD%E6%95%B0-f27462d8-3657-4030-866b-a272c1d18b4b"}],functionParameter:{knownYs:{name:"已知資料_y",detail:"在 y = b*m^x 關係中一組已知的 y 值。"},knownXs:{name:"已知資料_x",detail:"在 y = b*m^x 關係中一組已知的 x 值。"},constb:{name:"b",detail:"指定是否強迫常數 b 等於 1 的邏輯值。"},stats:{name:"統計",detail:"指定是否要傳回額外迴歸統計值的邏輯值。"}}},LOGNORM_DIST:{description:"傳回對數常態累積分佈",abstract:"傳回對數常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lognorm-dist-%E5%87%BD%E6%95%B0-eb60d00b-48a9-4217-be2b-6074aee6b070"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,LOGNORM.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},LOGNORM_INV:{description:"傳回對數常態累積分佈的反函數",abstract:"傳回對數常態累積分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lognorm-inv-%E5%87%BD%E6%95%B0-fe79751a-f1f2-4af8-a0a1-e151b2d4f600"}],functionParameter:{probability:{name:"機率",detail:"對應到對數常態分佈的機率。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"}}},MARGINOFERROR:{description:"計算特定值範圍和信賴水準的誤差範圍",abstract:"計算特定值範圍和信賴水準的誤差範圍",links:[{title:"教導",url:"https://support.google.com/docs/answer/12487850?hl=zh-Hant&sjid=11250989209896695200-AP"}],functionParameter:{range:{name:"範圍",detail:"用來計算誤差範圍的值範圍。"},confidence:{name:"信賴水準",detail:"想要的信賴水準介於 (0, 1) 之間。"}}},MAX:{description:"傳回一組值中的最大值。 ",abstract:"傳回參數清單中的最大值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/max-%E5%87%BD%E6%95%B0-e0012414-9ac8-4b34-9a47-73e662c08098"}],functionParameter:{number1:{name:"數值 1",detail:"要計算最大值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"若要計算最大值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},MAXA:{description:"傳回參數清單中的最大值,包括數字、文字和邏輯值。 ",abstract:"傳回參數清單中的最大值,包括數字、文字和邏輯值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/maxa-%E5%87%BD%E6%95%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d"}],functionParameter:{value1:{name:"值 1",detail:"要從中找出最大值的第一個數值參數。 "},value2:{name:"值 2",detail:"要從中找出最大值的 2 到 255 個數值參數。 "}}},MAXIFS:{description:"傳回一組給定條件或標準指定的單元格之間的最大值",abstract:"傳回一組給定條件或標準指定的單元格之間的最大值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/maxifs-%E5%87%BD%E6%95%B0-dfd611e6-da2c-488a-919b-9b6376b28883"}],functionParameter:{maxRange:{name:"最大值範圍",detail:"確定最大值的實際儲存格區域。 "},criteriaRange1:{name:"條件範圍 1",detail:"是一組用於條件計算的單元格。 "},criteria1:{name:"條件 1",detail:"用來決定哪些儲存格是最大值的條件,格式為數字、表達式或文字。 一組相同的條件適用於 MINIFS、SUMIFS 和 AVERAGEIFS 函數。 "},criteriaRange2:{name:"條件範圍 2",detail:"附加區域。 最多可輸入 127 個區域。 "},criteria2:{name:"條件 2",detail:"附加關聯條件。 最多可以輸入 127 個條件。 "}}},MEDIAN:{description:"傳回給定數值集合的中位數",abstract:"傳回給定數值集合的中位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/median-%E5%87%BD%E6%95%B0-d0916313-4753-414c-8537-ce85bdd967d2"}],functionParameter:{number1:{name:"數值 1",detail:"要計算中位數的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算中位數的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},MIN:{description:"傳回一組值中的最小值。 ",abstract:"傳回參數清單中的最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/min-%E5%87%BD%E6%95%B0-61635d12-920f-4ce2-a70f-96f202dcc152"}],functionParameter:{number1:{name:"數值 1",detail:"要計算最小值的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算最小值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},MINA:{description:"傳回參數清單中的最小值,包括數字、文字和邏輯值。 ",abstract:"傳回參數清單中的最小值,包括數字、文字和邏輯值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mina-%E5%87%BD%E6%95%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3"}],functionParameter:{value1:{name:"值 1",detail:"要計算最小值的第一個數字、儲存格參考或儲存格區域。 "},value2:{name:"值 2",detail:"其他要計算最小值的數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},MINIFS:{description:"傳回一組給定條件或標準指定的單元格之間的最小值。 ",abstract:"傳回一組給定條件或標準指定的單元格之間的最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/minifs-%E5%87%BD%E6%95%B0-6ca1ddaa-079b-4e74-80cc-72eef32e6599"}],functionParameter:{minRange:{name:"最小值範圍",detail:"確定最小值的實際單元格區域。 "},criteriaRange1:{name:"條件範圍 1",detail:"是一組用於條件計算的單元格。 "},criteria1:{name:"條件 1",detail:"用來決定哪些儲存格是最小值的條件,格式為數字、表達式或文字。 一組相同的條件適用於 MAXIFS、SUMIFS 和 AVERAGEIFS 函數。 "},criteriaRange2:{name:"條件範圍 2",detail:"附加區域。 最多可輸入 127 個區域。 "},criteria2:{name:"條件 2",detail:"附加關聯條件。 最多可以輸入 127 個條件。 "}}},MODE_MULT:{description:"傳回一組資料或資料區域中出現頻率最高或重複出現的數值的垂直陣列",abstract:"傳回一組資料或資料區域中出現頻率最高或重複出現的數值的垂直陣列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mode-mult-%E5%87%BD%E6%95%B0-50fd9464-b2ba-4191-b57a-39446689ae8c"}],functionParameter:{number1:{name:"數值 1",detail:"要計算眾數的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算眾數的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},MODE_SNGL:{description:"傳回在資料集內出現次數最多的值",abstract:"傳回在資料集內出現次數最多的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mode-sngl-%E5%87%BD%E6%95%B0-f1267c16-66c6-4386-959f-8fba5f8bb7f8"}],functionParameter:{number1:{name:"數值 1",detail:"要計算眾數的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算眾數的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},NEGBINOM_DIST:{description:"傳回負二項式分佈",abstract:"返回負二項式分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/negbinom-dist-%E5%87%BD%E6%95%B0-c8239f89-c2d0-45bd-b6af-172e570f8599"}],functionParameter:{numberF:{name:"失敗次數",detail:"失敗的次數。"},numberS:{name:"成功次數",detail:"成功的閥值數目。"},probabilityS:{name:"成功機率",detail:"成功的機率。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,NEGBINOM.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},NORM_DIST:{description:"傳回常態累積分佈",abstract:"返回常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/norm-dist-%E5%87%BD%E6%95%B0-edb1cc14-a21c-4e53-839d-8082074c9f8d"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,NORM.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},NORM_INV:{description:"傳回常態累積分佈的反函數",abstract:"傳回常態累積分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/norm-inv-%E5%87%BD%E6%95%B0-54b30935-fee7-493c-bedb-2278a9db7e13"}],functionParameter:{probability:{name:"機率",detail:"對應到常態分佈的機率。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"}}},NORM_S_DIST:{description:"傳回標準常態累積分佈",abstract:"傳回標準常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/norm-s-dist-%E5%87%BD%E6%95%B0-1e787282-3832-4520-a9ae-bd2a8d99ba88"}],functionParameter:{z:{name:"z",detail:"要找出分佈的數值。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,NORM.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},NORM_S_INV:{description:"傳回標準常態累積分佈函數的反函數",abstract:"傳回標準常態累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/norm-s-inv-%E5%87%BD%E6%95%B0-d6d556b4-ab7f-49cd-b526-5a20918452b1"}],functionParameter:{probability:{name:"機率",detail:"對應到常態分佈的機率。"}}},PEARSON:{description:"傳回 Pearson 乘積矩相關係數",abstract:"傳回 Pearson 乘積矩相關係數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/pearson-%E5%87%BD%E6%95%B0-0c3e30fc-e5af-49c4-808a-3ef66e034c18"}],functionParameter:{array1:{name:"陣列1",detail:"代表因變數資料的陣列或矩陣的範圍。"},array2:{name:"陣列2",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},PERCENTILE_EXC:{description:"傳回資料集中第 k 個百分點的值 (不包括 0 與 1)",abstract:"傳回資料集中第 k 個百分點的值 (不包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentile-exc-%E5%87%BD%E6%95%B0-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},k:{name:"k",detail:"在 0 到 1 範圍內 (不包括 0 與 1) 的百分位數。"}}},PERCENTILE_INC:{description:"傳回資料集中第 k 個百分點的值 (包括 0 與 1)",abstract:"傳回資料集中第 k 個百分點的值 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentile-inc-%E5%87%BD%E6%95%B0-680f9539-45eb-410b-9a5e-c1355e5fe2ed"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},k:{name:"k",detail:"在 0 到 1 範圍內 (包括 0 與 1) 的百分位數。"}}},PERCENTRANK_EXC:{description:"傳回資料集中值的百分比排位 (不包括 0 與 1)",abstract:"傳回資料集中值的百分比排位 (不包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentrank-exc-%E5%87%BD%E6%95%B0-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},x:{name:"x",detail:"想要知道排名的數值。"},significance:{name:"有效位數",detail:"用以識別傳回百分比值的最高有效位數之數值。 如果省略,PERCENTRANK.EXC 會使用三位小數 (0.xxx)。"}}},PERCENTRANK_INC:{description:"傳回資料集中值的百分比排位 (包括 0 與 1)",abstract:"傳回資料集中值的百分比排位 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentrank-inc-%E5%87%BD%E6%95%B0-149592c9-00c0-49ba-86c1-c1f45b80463a"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},x:{name:"x",detail:"想要知道排名的數值。"},significance:{name:"有效位數",detail:"用以識別傳回百分比值的最高有效位數之數值。 如果省略,PERCENTRANK.INC 會使用三位小數 (0.xxx)。"}}},PERMUT:{description:"傳回給定數目物件的排列數",abstract:"傳回給定數目物件的排列數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/permut-%E5%87%BD%E6%95%B0-3bd1cb9a-2880-41ab-a197-f246a7a602d3"}],functionParameter:{number:{name:"總數",detail:"項目數。"},numberChosen:{name:"樣品數量",detail:"每個排列中的項目數。"}}},PERMUTATIONA:{description:"傳回可從總計物件中選取的給定數目物件(含重複)的排列數",abstract:"傳回可從總計物件中選取的給定數目物件(含重複)的排列數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/permutationa-%E5%87%BD%E6%95%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e"}],functionParameter:{number:{name:"總數",detail:"項目數。"},numberChosen:{name:"樣品數量",detail:"每個排列中的項目數。"}}},PHI:{description:"傳回標準常態分佈的密度函數值",abstract:"傳回標準常態分佈的密度函數值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/phi-%E5%87%BD%E6%95%B0-23e49bc6-a8e8-402d-98d3-9ded87f6295c"}],functionParameter:{x:{name:"x",detail:"X 是要求標準常態分佈密度的數位。"}}},POISSON_DIST:{description:"返回泊松分佈",abstract:"返回泊松分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/poisson-dist-%E5%87%BD%E6%95%B0-8fe148ff-39a2-46cb-abf3-7772695d9636"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,POISSON.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},PROB:{description:"傳回區域中的數值落在指定區間內的機率",abstract:"傳回區域中的數值落在指定區間內的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/prob-%E5%87%BD%E6%95%B0-9ac30561-c81c-4259-8253-34f0a238fc49"}],functionParameter:{xRange:{name:"數值",detail:"具有各自對應機率值的數值區域。"},probRange:{name:"機率",detail:"與數值相關聯的一組機率值。"},lowerLimit:{name:"下界",detail:"要計算其機率的數值下界。"},upperLimit:{name:"上界",detail:"要計算其機率的數值上界。"}}},QUARTILE_EXC:{description:"傳回資料集的四分位數 (不包括 0 與 1)",abstract:"傳回資料集的四分位數 (不包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/quartile-exc-%E5%87%BD%E6%95%B0-5a355b7a-840b-4a01-b0f1-f538c2864cad"}],functionParameter:{array:{name:"陣列",detail:"要求得四分位數值的陣列或資料範圍。"},quart:{name:"四分位值",detail:"要傳回的四分位數值。"}}},QUARTILE_INC:{description:"傳回資料集的四分位數 (包括 0 與 1)",abstract:"傳回資料集的四分位數 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/quartile-inc-%E5%87%BD%E6%95%B0-1bbacc80-5075-42f1-aed6-47d735c4819d"}],functionParameter:{array:{name:"陣列",detail:"要求得四分位數值的陣列或資料範圍。"},quart:{name:"四分位值",detail:"要傳回的四分位數值。"}}},RANK_AVG:{description:"傳回一列數字的數字排位",abstract:"傳回一列數字的數字排位",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rank-avg-%E5%87%BD%E6%95%B0-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a"}],functionParameter:{number:{name:"數值",detail:"要找出其排名的數字。"},ref:{name:"數位清單",detail:"數位清單的參照。會忽略 ref 中的非數值。"},order:{name:"排列方式",detail:"指定排列數值方式的數字。0 或省略為遞減順序排序,非 0 為遞增順序排序。"}}},RANK_EQ:{description:"傳回一列數字的數字排位",abstract:"傳回一列數字的數字排位",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rank-eq-%E5%87%BD%E6%95%B0-284858ce-8ef6-450e-b662-26245be04a40"}],functionParameter:{number:{name:"數值",detail:"要找出其排名的數字。"},ref:{name:"數位清單",detail:"數位清單的參照。會忽略 ref 中的非數值。"},order:{name:"排列方式",detail:"指定排列數值方式的數字。0 或省略為遞減順序排序,非 0 為遞增順序排序。"}}},RSQ:{description:"傳回 Pearson 乘積矩相關係數的平方",abstract:"傳回 Pearson 積矩相關係數的平方",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rsq-%E5%87%BD%E6%95%B0-d7161715-250d-4a01-b80d-a8364f2be08f"}],functionParameter:{array1:{name:"陣列1",detail:"代表因變數資料的陣列或矩陣的範圍。"},array2:{name:"陣列2",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},SKEW:{description:"傳回分佈的偏斜度",abstract:"傳回分佈的偏斜度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/skew-%E5%87%BD%E6%95%B0-bdf49d86-b1ef-4804-a046-28eaea69c9fa"}],functionParameter:{number1:{name:"數值 1",detail:"要計算偏斜度的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算偏斜度的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},SKEW_P:{description:"傳回基於樣本總體的分佈的偏斜度",abstract:"傳回基於樣本總體的分佈的偏斜度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/skew-p-%E5%87%BD%E6%95%B0-76530a5c-99b9-48a1-8392-26632d542fcb"}],functionParameter:{number1:{name:"數值 1",detail:"要計算偏斜度的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算偏斜度的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},SLOPE:{description:"傳回線性迴歸線的斜率",abstract:"傳回線性迴歸線的斜率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/slope-%E5%87%BD%E6%95%B0-11fb8f97-3117-4813-98aa-61d7e01276b9"}],functionParameter:{knownYs:{name:"陣列_y",detail:"代表因變數資料的陣列或矩陣的範圍。"},knownXs:{name:"陣列_x",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},SMALL:{description:"傳回資料集中的第 k 個最小值",abstract:"傳回資料集中的第 k 個最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/small-%E5%87%BD%E6%95%B0-17da8222-7c82-42b2-961b-14c45384df07"}],functionParameter:{array:{name:"陣列",detail:"要判斷第 k 個最小值的陣列或資料範圍。"},k:{name:"k",detail:"要傳回之資料陣列或儲存格範圍中的位置 (由最小起算)。"}}},STANDARDIZE:{description:"返回常態化數值",abstract:"返回常態化數值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/standardize-%E5%87%BD%E6%95%B0-81d66554-2d54-40ec-ba83-6437108ee775"}],functionParameter:{x:{name:"x",detail:"要找出常態化的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"}}},STDEV_P:{description:"計算基於以參數形式給出的整個樣本總體的標準偏差(忽略邏輯值和文本)。 ",abstract:"基於整個樣本總體計算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdev-p-%E5%87%BD%E6%95%B0-6e917c05-31a0-496f-ade7-4f4e7462f285"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體的 2 到 254 個數值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},STDEV_S:{description:"基於樣本估算標準差(忽略樣本中的邏輯值和文字)。 ",abstract:"基於樣本估算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdev-s-%E5%87%BD%E6%95%B0-7d69cf97-0c1f-4acf-be27-f3e83904cc23"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體樣本的第一個數值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "},number2:{name:"數值 2",detail:"對應於總體樣本的 2 到 254 個數值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},STDEVA:{description:"基於樣本(包括數字、文字和邏輯值)估算標準差。 ",abstract:"基於樣本(包括數字、文字和邏輯值)估算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdeva-%E5%87%BD%E6%95%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d"}],functionParameter:{value1:{name:"值 1",detail:"對應於總體樣本的第一個值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "},value2:{name:"值 2",detail:"對應於總體樣本的 2 到 254 個值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},STDEVPA:{description:"根據作為參數(包括文字和邏輯值)給定的整個總體計算標準偏差。 ",abstract:"基於樣本總體(包括數字、文本和邏輯值)計算標準偏差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdevpa-%E5%87%BD%E6%95%B0-5578d4d6-455a-4308-9991-d405afe2c28c"}],functionParameter:{value1:{name:"值 1",detail:"對應於總體的第一個值參數。 "},value2:{name:"值 2",detail:"對應於總體的 2 到 254 個值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},STEYX:{description:"傳回透過線性迴歸法預測每個 x 的 y 值時所產生的標準誤差",abstract:"返回透過線性迴歸法預測每個 x 的 y 值時所產生的標準誤差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/steyx-%E5%87%BD%E6%95%B0-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab"}],functionParameter:{knownYs:{name:"陣列_y",detail:"代表因變數資料的陣列或矩陣的範圍。"},knownXs:{name:"陣列_x",detail:"代表自變數資料的陣列或矩陣的範圍。"}}},T_DIST:{description:"傳回學生的 t 機率分佈",abstract:"傳回學生的 t 機率分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-dist-%E5%87%BD%E6%95%B0-4329459f-ae91-48c2-bba8-1ead1c6c21b2"}],functionParameter:{x:{name:"x",detail:"需要計算分佈的數值。"},degFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,T.DIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},T_DIST_2T:{description:"傳回學生的 t 機率分佈 (雙尾)",abstract:"傳回學生的 t 機率分佈 (雙尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-dist-2t-%E5%87%BD%E6%95%B0-198e9340-e360-4230-bd21-f52f22ff5c28"}],functionParameter:{x:{name:"x",detail:"需要計算分佈的數值。"},degFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"}}},T_DIST_RT:{description:"傳回學生的 t 機率分佈 (右尾)",abstract:"傳回學生的 t 機率分佈 (右尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-dist-rt-%E5%87%BD%E6%95%B0-20a30020-86f9-4b35-af1f-7ef6ae683eda"}],functionParameter:{x:{name:"x",detail:"需要計算分佈的數值。"},degFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"}}},T_INV:{description:"傳回學生的 t 機率分佈的反函數",abstract:"傳回學生的 t 機率分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-inv-%E5%87%BD%E6%95%B0-2908272b-4e61-4942-9df9-a25fec9b0e2e"}],functionParameter:{probability:{name:"機率",detail:"與學生的 t 分佈相關的機率。"},dedegFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"}}},T_INV_2T:{description:"傳回學生的 t 機率分佈的反函數 (雙尾)",abstract:"傳回學生的 t 機率分佈的反函數 (雙尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-inv-2t-%E5%87%BD%E6%95%B0-ce72ea19-ec6c-4be7-bed2-b9baf2264f17"}],functionParameter:{probability:{name:"機率",detail:"與學生的 t 分佈相關的機率。"},dedegFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"}}},T_TEST:{description:"傳回與學生 t-檢定相關的機率",abstract:"返回與學生 t-檢定相關的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-test-%E5%87%BD%E6%95%B0-d4e08ec3-c545-485f-962e-276f7cbed055"}],functionParameter:{array1:{name:"陣列1",detail:"第一個陣列或資料範圍。"},array2:{name:"陣列2",detail:"第二個陣列或資料範圍。"},tails:{name:"尾部特性",detail:"指定分佈的尾數。 如果 tails = 1,T.TEST 會使用單尾分佈。 如果 tails = 2,T.TEST 會使用雙尾分佈。"},type:{name:"檢定類型",detail:"要執行的 t 檢定類型。"}}},TREND:{description:"返回線性趨勢值",abstract:"返回線性趨勢值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/trend-%E5%87%BD%E6%95%B0-e2f135f0-8827-4096-9873-9a7cf7b51ef1"}],functionParameter:{knownYs:{name:"已知資料_y",detail:"在 y = m*x+b 關係中一組已知的 y 值。"},knownXs:{name:"已知資料_x",detail:"在 y = m*x+b 關係中一組已知的 x 值。"},newXs:{name:"新資料_x",detail:"要 TREND 傳回對應 y 值的新 x 值。"},constb:{name:"b",detail:"指定是否強迫常數 b 等於 0 的邏輯值。"}}},TRIMMEAN:{description:"傳回資料集的內部平均值",abstract:"傳回資料集的內部平均值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/trimmean-%E5%87%BD%E6%95%B0-d90c9878-a119-4746-88fa-63d988f511d3"}],functionParameter:{array:{name:"陣列",detail:"要求得內部平均值的陣列或資料範圍。"},percent:{name:"排除比例",detail:"從計算中排除資料點的百分比值。"}}},VAR_P:{description:"計算基於整個樣本總體的變異數(忽略樣本總體中的邏輯值和文字)。 ",abstract:"計算以樣本總體為基礎的變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/var-p-%E5%87%BD%E6%95%B0-73d1285c-108c-4843-ba5d-a51f90656f3a"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體的 2 到 254 個數值參數。 "}}},VAR_S:{description:"估算以樣本為基礎的變異數(忽略樣本中的邏輯值和文字)。 ",abstract:"基於樣本估算變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/var-s-%E5%87%BD%E6%95%B0-913633de-136b-449d-813e-65a00b2b990b"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體樣本的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體樣本的 2 到 254 個數值參數。 "}}},VARA:{description:"基於樣本(包括數字、文字和邏輯值)估算變異數",abstract:"以樣本為基礎(包括數字、文字和邏輯值)估算變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/vara-%E5%87%BD%E6%95%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07"}],functionParameter:{value1:{name:"值 1",detail:"對應於總體樣本的第一個值參數。 "},value2:{name:"值 2",detail:"對應於總體樣本的 2 到 254 個值參數"}}},VARPA:{description:"基於樣本總體(包括數字、文本和邏輯值)計算標準差",abstract:"基於樣本總體(包括數字、文本和邏輯值)計算標準偏差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/varpa-%E5%87%BD%E6%95%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96"}],functionParameter:{value1:{name:"值 1",detail:"對應於總體的第一個值參數。 "},value2:{name:"值 2",detail:"對應於總體的 2 到 254 個值參數"}}},WEIBULL_DIST:{description:"傳回 Weibull 分佈",abstract:"傳回 Weibull 分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/weibull-dist-%E5%87%BD%E6%95%B0-4e783c39-9325-49be-bbc9-a83ef82b45db"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 WEIBULL.DIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},Z_TEST:{description:"傳回 z 檢定的單尾機率值",abstract:"傳回 z 檢定的單尾機率值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/z-test-%E5%87%BD%E6%95%B0-d633d5a3-2031-4614-a016-92180ad82bee"}],functionParameter:{array:{name:"陣列",detail:"用來檢定 x 的陣列或資料範圍。"},x:{name:"x",detail:"要檢定的值。"},sigma:{name:"標準差",detail:"總體(已知)標準差。如果省略,則使用樣本標準差。"}}}},...{ADDRESS:{description:"根據指定行號和列號獲得工作表中的某個儲存格的位址。 例如,ADDRESS(2,3) 傳回 $C$2。 再例如,ADDRESS(77,300) 回傳 $KN$77。 可以使用其他函數(如 ROW 和 COLUMN 函數)為 ADDRESS 函數提供行號和列號參數。 ",abstract:"以文字形式將參考值傳回工作表的單一儲存格",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/address-%E5%87%BD%E6%95%B0-d0c26c0d-3991-446b-8de4-ab46431d4f89"}],functionParameter:{row_num:{name:"行號",detail:"一個數值,指定要使用儲存格的行號。 "},column_num:{name:"列號",detail:"一個數值,指定要在儲存格參考中使用的列號。 "},abs_num:{name:"引用型別",detail:"一個數值,指定要傳回的參考型別。 "},a1:{name:"引用樣式",detail:"一個邏輯值,指定 A1 或 R1C1 引用樣式。 在 A1 樣式中,列和行將分別按字母和數字順序新增標籤。 在 R1C1 引用樣式中,列和行均會依數字順序新增標籤。 如果參數 A1 為 TRUE 或省略,則 ADDRESS 函數傳回 A1 樣式參考;如果為 FALSE,則 ADDRESS 函數傳回 R1C1 樣式參考。 "},sheet_text:{name:"工作表名稱",detail:'一個文字值,指定要用作外部參考的工作表的名稱。 例如,公式=ADDRESS (1,1,,,"Sheet2") 回傳 Sheet2! $A$1。 如果 sheet_text 參數,則不使用工作表名稱,函數傳回的位址會引用目前工作表上的儲存格。 '}}},AREAS:{description:"傳回引用中涉及的區域個數",abstract:"傳回引用中涉及的區域數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/areas-%E5%87%BD%E6%95%B0-8392ba32-7a41-43b3-96b0-3695d2ec6152"}],functionParameter:{reference:{name:"引用",detail:"儲存格或儲存格範圍的參照,而且可參照多個區域。"}}},CHOOSE:{description:"從值的清單中選擇值。 ",abstract:"從值的清單中選擇值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/choose-%E5%87%BD%E6%95%B0-fc5c184f-cb62-4ec7-a46e-38653b98f5bc"}],functionParameter:{indexNum:{name:"索引",detail:`用於指定所選取的數值參數。 index_num 必須是介於 1 到 254 之間的數字,或是包含 1 到 254 之間的數字的公式或儲存格參考。 +如果 index_num 為 1,則 CHOOSE 傳回 value1;如果為 2,則 CHOOSE 傳回 value2,以此類推。 +如果 index_num 小於 1 或大於清單中最後一個值的索引號,則 CHOOSE 傳回 #VALUE! 錯誤值。 +如果 index_num 為小數,則在使用前會被截尾取整。 `},value1:{name:"值 1",detail:"CHOOSE 將根據 index_num 從中選擇一個數值或一項要執行的操作。 參數可以是數字、儲存格引用、定義的名稱、公式、函數或文字。 "},value2:{name:"值 2",detail:"1 到 254 個值參數。 "}}},CHOOSECOLS:{description:"傳回數組中的指定列",abstract:"傳回數組中的指定列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/choosecols-%E5%87%BD%E6%95%B0-bf117976-2722-4466-9b9a-1c01ed9aebff"}],functionParameter:{array:{name:"陣列",detail:"包含要在新陣列中傳回之欄的陣列。"},colNum1:{name:"欄數1",detail:"要返回的第一欄。"},colNum2:{name:"欄數2",detail:"要返回的其他欄。"}}},CHOOSEROWS:{description:"傳回數組中的指定行",abstract:"傳回數組中的指定行",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chooserows-%E5%87%BD%E6%95%B0-51ace882-9bab-4a44-9625-7274ef7507a3"}],functionParameter:{array:{name:"陣列",detail:"包含要在新陣列中傳回之欄的陣列。"},rowNum1:{name:"列數1",detail:"要返回的第一列數。"},rowNum2:{name:"列數2",detail:"要返回的其他列數。"}}},COLUMN:{description:"傳回給定單元格引用的列號。 ",abstract:"傳回引用的列號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/column-%E5%87%BD%E6%95%B0-44e8c754-711c-4df3-9da4-47a55042554b"}],functionParameter:{reference:{name:"引用",detail:"要傳回其列號的儲存格或儲存格範圍。 "}}},COLUMNS:{description:"傳回數組或引用的列數。 ",abstract:"傳回引用中包含的列數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/columns-%E5%87%BD%E6%95%B0-4e8e7b4e-e603-43e8-b177-956088fa48ca"}],functionParameter:{array:{name:"陣列",detail:"要計算列數的陣列、陣列公式或是對儲存格區域的參考。 "}}},DROP:{description:"從陣列的開頭或結尾排除指定數量的行或列",abstract:"從陣列的開頭或結尾排除指定數量的行或列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/drop-%E5%87%BD%E6%95%B0-1cb4e151-9e17-4838-abe5-9ba48d8c6a34"}],functionParameter:{array:{name:"陣列",detail:"要排除列或欄的陣列。"},rows:{name:"列數",detail:"要排除的列數。負值會從陣列結尾排除。"},columns:{name:"欄數",detail:"要排除的欄數。負值會從陣列結尾排除。"}}},EXPAND:{description:"將陣列展開或填入指定的行和列維度",abstract:"將陣列展開或填入指定的行和列維度",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/expand-%E5%87%BD%E6%95%B0-7433fba5-4ad1-41da-a904-d5d95808bc38"}],functionParameter:{array:{name:"陣列",detail:"要展開的陣列。"},rows:{name:"列數",detail:"展開陣列中的列數。 如果遺失,將不會展開列。"},columns:{name:"欄數",detail:"展開陣列中的欄數。 如果遺失,欄將不會展開。"},padWith:{name:"填塞值",detail:"要填塞的值。 預設值為 #N/A。"}}},FILTER:{description:"FILTER 函數可以基於定義的條件篩選一系列資料。 ",abstract:"FILTER 函數可以基於定義的條件篩選一系列資料。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/filter-%E5%87%BD%E6%95%B0-f4f7cb66-82eb-4767-8f7c-4877ad80c759"}],functionParameter:{array:{name:"陣列",detail:"要篩選的區域或陣列。"},include:{name:"布林值數組",detail:"布林值數組,其中 TRUE 表示要保留的一行或一列。"},ifEmpty:{name:"空值返回",detail:"如果未保留任何項,則傳回。"}}},FORMULATEXT:{description:"將給定引用的公式傳回為文字",abstract:"將給定引用的公式傳回為文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/formulatext-%E5%87%BD%E6%95%B0-0a786771-54fd-4ae2-96ee-09cda35439c8"}],functionParameter:{reference:{name:"引用",detail:"單元格或儲存格範圍的參照。"}}},GETPIVOTDATA:{description:"傳回儲存在資料透視表中的資料",abstract:"傳回儲存在資料透視表中的資料",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/getpivotdata-%E5%87%BD%E6%95%B0-8c083b99-a922-4ca0-af5e-3af55960761f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},HLOOKUP:{description:"在表格的首行或數值數組中搜尋值,然後傳回表格或陣列中指定行的所在列中的值。 ",abstract:"找出陣列的首行,並傳回指定儲存格的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hlookup-%E5%87%BD%E6%95%B0-a3034eec-b719-4ba3-bb65-e1ad662ed95f"}],functionParameter:{lookupValue:{name:"查找值",detail:"要尋找的值。 要尋找的值必須位於 table_array 參數中指定的儲存格區域的第一行中。 "},tableArray:{name:"範圍",detail:"VLOOKUP 在其中搜尋 lookup_value 和傳回值的儲存格區域。在其中尋找資料的資訊表。 使用區域或區域名稱的引用。 "},rowIndexNum:{name:"行號",detail:"行號table_array符合值將傳回的行號(row_index_num為 1,則傳回 table_array 中的第一行值,row_index_num 2 傳回 table_array 中的第二行值)。 "},rangeLookup:{name:"查詢類型",detail:"指定希望查找精確匹配值還是近似匹配值:預設近似匹配 - 1/TRUE, 完全匹配 - 0/FALSE"}}},HSTACK:{description:"水平和順序追加數組以傳回較大的陣列",abstract:"水平和順序追加數組以傳回較大的陣列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hstack-%E5%87%BD%E6%95%B0-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2"}],functionParameter:{array1:{name:"陣列",detail:"要附加的陣列。"},array2:{name:"陣列",detail:"要附加的陣列。"}}},HYPERLINK:{description:"建立捷徑或跳轉,以開啟儲存在網頁伺服器、Intranet 或 Internet 上的文件",abstract:"建立捷徑或跳轉,以開啟儲存在網頁伺服器、Intranet 或 Internet 上的文件",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hyperlink-%E5%87%BD%E6%95%B0-333c7ce6-c5ae-4164-9c47-7de9b76f577f"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},IMAGE:{description:"從給定來源返回圖像",abstract:"從給定來源返回映像",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/image-%E5%87%BD%E6%95%B0-7e112975-5e52-4f2a-b9da-1d913d51f5d5"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},INDEX:{description:"傳回指定的行與列交叉處的儲存格參考。 如果引用由不連續的選取區域組成,可以選擇某一選取區域。 ",abstract:"使用索引從引用或陣列中選擇值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/index-%E5%87%BD%E6%95%B0-a5dcf0dd-996d-40a4-a822-b56b061328bd"}],functionParameter:{reference:{name:"引用",detail:"對一個或多個儲存格區域的引用。"},rowNum:{name:"行號",detail:"引用中某行的行號,函數從該行傳回一個引用。 "},columnNum:{name:"列號",detail:"引用中某列的列標,函數從該列傳回一個引用。 "},areaNum:{name:"區域編號",detail:"選擇要傳回行號和列號的交叉點的參考區域。"}}},INDIRECT:{description:"傳回由文字字串指定的引用。 此函數立即對引用進行計算,並顯示其內容。 ",abstract:"傳回由文字值指定的參考",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/indirect-%E5%87%BD%E6%95%B0-474b3a3a-8a26-4f44-b491-92b6306fa261"}],functionParameter:{refText:{name:"引用文本",detail:"對包含 A1 樣式引用、R1C1 樣式引用、定義為引用的名稱或作為文本字符串引用的單元格的引用的引用。"},a1:{name:"引用類型",detail:"一個邏輯值,用於指定包含在單元格引用文本中的引用的類型。"}}},LOOKUP:{description:"當需要查詢一行或一列並查找另一行或列中的相同位置的值時使用",abstract:"在向量或陣列中找出值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lookup-%E5%87%BD%E6%95%B0-446d94af-663b-451d-8251-369d5e3864cb"}],functionParameter:{lookupValue:{name:"查找值",detail:"在第一個向量中搜尋的值。可以是數字、文字、邏輯值、名稱或對值的引用。 "},lookupVectorOrArray:{name:"查詢範圍或陣列",detail:"只包含一行或一列的區域。 "},resultVector:{name:"結果範圍",detail:" 只包含一行或一列的區域。參數必須與 lookup_vector 參數大小相同。 其大小必須相同。 "}}},MATCH:{description:"使用 MATCH 函數在 範圍 儲存格中搜尋特定的項,然後傳回該項在此區域中的相對位置。",abstract:"在參考或陣列中尋找值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/match-%E5%87%BD%E6%95%B0-e8dffd45-c762-47d6-bf89-533f4a37673a"}],functionParameter:{lookupValue:{name:"尋找值",detail:"要在 lookup_array 中符合的值。"},lookupArray:{name:"搜尋區域",detail:"要搜尋的儲存格區域。"},matchType:{name:"符合類型",detail:"數字 -1、0 或 1。"}}},OFFSET:{description:"從給定參考傳回引用偏移量",abstract:"從給定引用返回引用偏移",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/offset-%E5%87%BD%E6%95%B0-c8de19ae-dd79-4b9b-a14e-b4d906d11b66"}],functionParameter:{reference:{name:"引用",detail:"要基於偏移量的參考。"},rows:{name:"行數",detail:"需要左上角單元格引用的向上或向下行數。"},cols:{name:"列數",detail:"需要結果的左上角單元格引用的從左到右的列數。"},height:{name:"行高",detail:"需要傳回的引用的行高。行高必須為正數。"},width:{name:"列寬",detail:"需要傳回的引用的列寬。列寬必須為正數。"}}},ROW:{description:"傳回給定單元格引用的行號。 ",abstract:"傳回引用的行號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/row-%E5%87%BD%E6%95%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d"}],functionParameter:{reference:{name:"引用",detail:"需要取得其行號的儲存格或儲存格區域。 "}}},ROWS:{description:"傳回數組或引用的行數。 ",abstract:"傳回引用中的行數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rows-%E5%87%BD%E6%95%B0-b592593e-3fc2-47f2-bec1-bda493811597"}],functionParameter:{array:{name:"陣列",detail:"需要取得其行數的陣列、陣列公式或對儲存格區域的參考。 "}}},RTD:{description:"從支援 COM 自動化的程式中擷取即時資料",abstract:"從支援 COM 自動化的程式中擷取即時資料",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rtd-%E5%87%BD%E6%95%B0-e0cc001a-56f0-470a-9b19-9455dc0eb593"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},SORT:{description:"將區域或陣列的內容排序",abstract:"將區域或陣列的內容排序",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sort-%E5%87%BD%E6%95%B0-22f63bd0-ccc8-492f-953d-c20e8e44b86c"}],functionParameter:{array:{name:"陣列",detail:"要排序的範圍或陣列。"},sortIndex:{name:"排序索引",detail:"表示排序依據(按行或按列)的數字。"},sortOrder:{name:"排序順序",detail:"表示所需排序順序的數字;1表示順序(預設),-1表示降序。"},byCol:{name:"排序方向",detail:"表示所需排序方向的邏輯值;FALSE指依行排序(預設),TRUE指依列排序。"}}},SORTBY:{description:"根據對應區域或陣列中的值對區域或陣列的內容進行排序",abstract:"根據對應區域或陣列中的值對區域或陣列的內容進行排序",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sortby-%E5%87%BD%E6%95%B0-cd2d7a62-1b93-435c-b561-d6a35134f28f"}],functionParameter:{array:{name:"陣列",detail:"要排序的範圍或陣列。"},byArray1:{name:"排序數組1",detail:"若要基於其進行排序的範圍或陣列。"},sortOrder1:{name:"排序順序1",detail:"表示所需排序順序的數字;1表示順序(預設),-1表示降序。"},byArray2:{name:"排序數組2",detail:"若要基於其進行排序的範圍或陣列。"},sortOrder2:{name:"排序順序2",detail:"表示所需排序順序的數字;1表示順序(預設),-1表示降序。"}}},TAKE:{description:"從陣列的開頭或結尾傳回指定數量的連續行或列",abstract:"從陣列的開頭或結尾傳回指定數量的連續行或列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/take-%E5%87%BD%E6%95%B0-25382ff1-5da1-4f78-ab43-f33bd2e4e003"}],functionParameter:{array:{name:"陣列",detail:"要取用列或欄的陣列。"},rows:{name:"列數",detail:"要取用的列數。負值會從陣列結尾取用。"},columns:{name:"欄數",detail:"要取用的欄數。負值會從陣列結尾取用。"}}},TOCOL:{description:"傳回單一欄中的陣列。",abstract:"傳回單一欄中的陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tocol-%E5%87%BD%E6%95%B0-22839d9b-0b55-4fc1-b4e6-2761f8f122ed"}],functionParameter:{array:{name:"陣列",detail:"要以欄返回的陣列或參照。"},ignore:{name:"忽略值",detail:`是否要忽略特定類型的值。 根據預設,不會忽略任何值。 指定下列其中一項動作: +0 保留所有值 (預設) +1 略過空白 +2 略過錯誤 +3 略過空白和錯誤`},scanByColumn:{name:"依欄掃描陣列",detail:"依欄掃描陣列。 根據預設,陣列會以列掃描。 掃描會決定值是依列或欄排序。"}}},TOROW:{description:"傳回單一列中的陣列。",abstract:"傳回單一列中的陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/torow-%E5%87%BD%E6%95%B0-b90d0964-a7d9-44b7-816b-ffa5c2fe2289"}],functionParameter:{array:{name:"陣列",detail:"要以列返回的陣列或參照。"},ignore:{name:"忽略值",detail:`是否要忽略特定類型的值。 根據預設,不會忽略任何值。 指定下列其中一項動作: +0 保留所有值 (預設) +1 略過空白 +2 略過錯誤 +3 略過空白和錯誤`},scanByColumn:{name:"依欄掃描陣列",detail:"依欄掃描陣列。 根據預設,陣列會以列掃描。 掃描會決定值是依列或欄排序。"}}},TRANSPOSE:{description:"傳回數組的轉置",abstract:"傳回陣列的轉置",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/transpose-%E5%87%BD%E6%95%B0-ed039415-ed8a-4a81-93e9-4b6dfac76027"}],functionParameter:{array:{name:"陣列",detail:"工作表中的儲存格區域或陣列。"}}},UNIQUE:{description:"傳回清單或區域的唯一值清單",abstract:"傳回清單或區域的唯一值清單",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/unique-%E5%87%BD%E6%95%B0-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e"}],functionParameter:{array:{name:"陣列",detail:"從中傳回唯一行或列的範圍或陣列。"},byCol:{name:"依據列",detail:"是一個邏輯值:將行彼此比較並傳回唯一值 = FALSE,或已省略;將列彼此比較並傳回唯一值 = TRUE。"},exactlyOnce:{name:"僅一次",detail:"是邏輯值:從陣列傳回只出現一次的行或列 = TRUE;從陣列傳回所有不同的行或列 = FALSE,或已省略。"}}},VLOOKUP:{description:"需要在表格或區域中按行查找內容時,請使用 VLOOKUP。 例如,按零件號碼找出汽車零件的價格,或根據員工 ID 尋找員工姓名。 ",abstract:"在數組第一列中查找,然後在行之間移動以返回單元格的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1"}],functionParameter:{lookupValue:{name:"查找值",detail:"要尋找的值。 要尋找的值必須位於 table_array 參數中指定的儲存格區域的第一列。 "},tableArray:{name:"範圍",detail:"VLOOKUP 在其中搜尋 lookup_value 和傳回值的儲存格區域。 可以使用命名區域或表,並且可以在參數中使用名稱,而不是單元格參考。 "},colIndexNum:{name:"行號",detail:"其中包含傳回值的儲存格的編號(table_array 最左側儲存格為 1 開始編號)。 "},rangeLookup:{name:"查詢類型",detail:"一個邏輯值,該值指定希望 VLOOKUP 查找近似匹配還是精確匹配:近似匹配 - 1/TRUE, 完全匹配 - 0/FALSE"}}},VSTACK:{description:"依序垂直追加陣列以傳回更大的陣列",abstract:"依序垂直追加陣列以傳回更大的陣列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/vstack-%E5%87%BD%E6%95%B0-a4b86897-be0f-48fc-adca-fcc10d795a9c"}],functionParameter:{array1:{name:"陣列",detail:"要附加的陣列。"},array2:{name:"陣列",detail:"要附加的陣列。"}}},WRAPCOLS:{description:"在指定的元素數之後,將提供的列或欄的值以欄換行,以形成新陣列。",abstract:"在指定的元素數之後,將提供的列或欄的值以欄換行,以形成新陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/wrapcols-%E5%87%BD%E6%95%B0-d038b05a-57b7-4ee0-be94-ded0792511e2"}],functionParameter:{vector:{name:"向量",detail:"要換行的向量或參照。"},wrapCount:{name:"換行數目",detail:"每一欄的最大值數目。"},padWith:{name:"填塞值",detail:"要填塞的值。 預設值為 #N/A。"}}},WRAPROWS:{description:"在指定的元素數之後,將提供的列或欄的值以列換行,以形成新陣列。",abstract:"在指定的元素數之後,將提供的列或欄的值以列換行,以形成新陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/wraprows-%E5%87%BD%E6%95%B0-796825f3-975a-4cee-9c84-1bbddf60ade0"}],functionParameter:{vector:{name:"向量",detail:"要換行的向量或參照。"},wrapCount:{name:"換行數目",detail:"每一列的最大值數目。"},padWith:{name:"填塞值",detail:"要填塞的值。 預設值為 #N/A。"}}},XLOOKUP:{description:"函數搜尋區域或數組,然後傳回與它找到的第一個匹配項對應的項。 如果不存在匹配項,則 XLOOKUP 可以傳回最接近的 (近似) 匹配項",abstract:"搜尋區域或陣列,並傳回與之找到的第一個符合項目對應的項目。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/xlookup-%E5%87%BD%E6%95%B0-b7fd680e-6d10-43e6-84f9-88eae8bf5929"}],functionParameter:{lookupValue:{name:"查找值",detail:"要搜尋的值,如果省略,XLOOKUP 將會傳回在 lookup_array 中找到的空白儲存格。 "},lookupArray:{name:"搜尋區域",detail:"要搜尋的陣列或區域"},returnArray:{name:"傳回區域",detail:"要傳回的陣列或區域"},ifNotFound:{name:"預設顯示值",detail:"如果未找到有效的匹配項,則返回你提供的 [if_not_found] 文本,否則返回#N/A "},matchMode:{name:"符合類型",detail:"指定符合類型: 0 - 完全符合。 如果未找到,則傳回 #N/A。預設選項。 -1 - 完全匹配。 如果沒有找到,則傳回下一個較小的項。 1 - 完全匹配。 如果沒有找到,則傳回下一個較大的項。 2 - 通配符匹配,其中 *, ? 和 ~ 有特殊意義。 "},searchMode:{name:"搜尋模式",detail:"指定要使用的搜尋模式:1 從第一項開始執行搜索,預設選項。 -1 從最後一項開始執行反向搜尋。 2 執行依賴 lookup_array 按升序排序的二進位搜尋, -2執行依賴於 lookup_array 按降序排序的二進位搜尋"}}},XMATCH:{description:"在陣列或儲存格區域中搜尋指定項,然後傳回項的相對位置。 ",abstract:"傳回項目在陣列或儲存格區域中的相對位置。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/xmatch-%E5%87%BD%E6%95%B0-d966da31-7a6b-4a13-a1c6-5a33ed6a0312"}],functionParameter:{lookupValue:{name:"找值",detail:"找值"},lookupArray:{name:"搜尋區域",detail:"要搜尋的陣列或區域"},matchMode:{name:"匹配類型",detail:`指定匹配類型: +0 - 完全匹配(預設值) +-1 - 完全匹配或下一個最小項 +1 - 完全匹配或下一個最大項 +2 - 通配符匹配,其中*, ? 和~ 有特殊意義。 `},searchMode:{name:"搜尋類型",detail:`指定搜尋類型: +1 - 搜尋從第一到最後一個(預設值) +-1 - 搜尋從最後到第一個(反向搜尋)。 +2 - 執行依賴 lookup_array 按升序排序的二進位搜尋。 如果未排序,將傳回無效結果。 +2 - 執行依賴 lookup_array 按降序排序的二進位搜尋。 如果未排序,將傳回無效結果。 `}}}},...{DAVERAGE:{description:"傳回所選資料庫條目的平均值",abstract:"傳回所選資料庫條目的平均值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/daverage-%E5%87%BD%E6%95%B0-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DCOUNT:{description:"計算資料庫中包含數字的單元格的數量",abstract:"計算資料庫中包含數字的單元格的數量",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dcount-%E5%87%BD%E6%95%B0-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DCOUNTA:{description:"計算資料庫中非空單元格的數量",abstract:"計算資料庫中非空單元格的數量",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dcounta-%E5%87%BD%E6%95%B0-00232a6d-5a66-4a01-a25b-c1653fda1244"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DGET:{description:"從資料庫提取符合指定條件的單一記錄",abstract:"從資料庫擷取符合指定條件的單一記錄",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dget-%E5%87%BD%E6%95%B0-455568bf-4eef-45f7-90f0-ec250d00892e"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DMAX:{description:"傳回所選資料庫項目的最大值",abstract:"傳回所選資料庫項目的最大值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dmax-%E5%87%BD%E6%95%B0-f4e8209d-8958-4c3d-a1ee-6351665d41c2"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DMIN:{description:"傳回所選資料庫條目的最小值",abstract:"傳回所選資料庫條目的最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dmin-%E5%87%BD%E6%95%B0-4ae6f1d9-1f26-40f1-a783-6dc3680192a3"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DPRODUCT:{description:"將資料庫中符合條件的記錄的特定欄位中的值相乘",abstract:"將資料庫中符合條件的記錄的特定欄位中的值相乘",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dproduct-%E5%87%BD%E6%95%B0-4f96b13e-d49c-47a7-b769-22f6d017cb31"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DSTDEV:{description:"基於所選資料庫條目的樣本估算標準差",abstract:"基於所選資料庫條目的樣本估算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dstdev-%E5%87%BD%E6%95%B0-026b8c73-616d-4b5e-b072-241871c4ab96"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DSTDEVP:{description:"基於所選資料庫條目的樣本總體計算標準差",abstract:"基於所選資料庫條目的樣本總體計算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dstdevp-%E5%87%BD%E6%95%B0-04b78995-da03-4813-bbd9-d74fd0f5d94b"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DSUM:{description:"對資料庫中符合條件的記錄的欄位列中的數字求和",abstract:"資料庫中符合條件的記錄的欄位列中的數字求和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dsum-%E5%87%BD%E6%95%B0-53181285-0c4b-4f5a-aaa3-529a322be41b"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DVAR:{description:"基於所選資料庫項目的樣本估算變異數",abstract:"基於所選資料庫條目的樣本估算變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dvar-%E5%87%BD%E6%;95%B0-d6747ca9-99c7-48bb-996e-9d7af00f3ed1"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}},DVARP:{description:"基於所選資料庫項目的樣本總體計算變異數",abstract:"基於所選資料庫條目的樣本總體計算變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dvarp-%E5%87%BD%E6%95%B0-eb0ba387-9cb7-45c8-81e9-0394912502fc"}],functionParameter:{database:{name:"資料庫",detail:"組成清單或資料庫的儲存格範圍。"},field:{name:"欄位",detail:"指出函數中所使用的欄。"},criteria:{name:"條件",detail:"含有指定條件的儲存格範圍。"}}}},...{ASC:{description:"將字串中的全角(雙位元組)英文字母或片假名改為半角(單字節)字元",abstract:"將字串中的全角(雙位元組)英文字母或片假名更改為半角(單字節)字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/asc-%E5%87%BD%E6%95%B0-0b6abf1c-c663-4004-a964-ebc00b723266"}],functionParameter:{text:{name:"文字",detail:"文字或儲存格參照,其中包含所要變更的文字。 如果文字中不包含任何全形字母,則文字不會變更。"}}},ARRAYTOTEXT:{description:"ARRAYTOTEXT 函數傳回任意指定區域內的文字值的陣列。 ",abstract:"ARRAYTOTEXT 函數傳回任意指定區域內的文字值的陣列。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/arraytotext-%E5%87%BD%E6%95%B0-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b"}],functionParameter:{array:{name:"陣列",detail:"要傳回做為文字的陣列。"},format:{name:"資料格式",detail:`傳回資料的格式。它可以是兩個值的其中之一: +0 預設。 易於閱讀的精簡格式。 +1 包含逸出字元和列分隔符號的限定格式。 產生可在輸入至資料編輯列時進行剖析的字串。 封裝會以引號傳回字串,除了布林值、數字和錯誤以外。`}}},BAHTTEXT:{description:"使用 ß(泰銖)貨幣格式將數字轉換為文本",abstract:"使用 ß(泰銖)貨幣格式將數字轉換為文本",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bahttext-%E5%87%BD%E6%95%B0-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c"}],functionParameter:{number:{name:"數值",detail:"為要轉換成文字的數字,或包含數字的儲存格參照,或結果為數字的公式。"}}},CHAR:{description:"傳回由代碼數字指定的字元",abstract:"傳回由代碼數字指定的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/char-%E5%87%BD%E6%95%B0-bbd249c8-b36e-4a91-8017-1c133f9b837a"}],functionParameter:{number:{name:"數值",detail:"介於 1 和 255 之間的數字,用以指定所需的字元。"}}},CLEAN:{description:"刪除文字中所有非列印字元",abstract:"刪除文字中所有非列印字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/clean-%E5%87%BD%E6%95%B0-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41"}],functionParameter:{text:{name:"文字",detail:"要從中移除無法列印之字元的任何工作表資訊。"}}},CODE:{description:"傳回文字字串中第一個字元的數字代碼",abstract:"傳回文字字串中第一個字元的數字代碼",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/code-%E5%87%BD%E6%95%B0-c32b692b-2ed0-4a04-bdd9-75640144b928"}],functionParameter:{text:{name:"文字",detail:"欲求其第一個字元代碼的文字。"}}},CONCAT:{description:"將多個區域和/或字串的文字組合起來,但不提供分隔符號或 IgnoreEmpty 參數。 ",abstract:"將多個區域和/或字串的文字組合起來,但不提供分隔符號或 IgnoreEmpty 參數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/concat-%E5%87%BD%E6%95%B0-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2"}],functionParameter:{text1:{name:"文字 1",detail:"要聯結的文字項目。 字串或字串數組,如單元格區域。 "},text2:{name:"文字 2",detail:"要聯結的其他文字項目。 文本項最多可以有 253 個文字參數。 每個參數可以是一個字串或字串數組,如單元格區域。 "}}},CONCATENATE:{description:"將幾個文​​本項合併為一個文本項",abstract:"將幾個文​​本項合併為一個文本項",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/concatenate-%E5%87%BD%E6%95%B0-8f8ae884-2ca8-4f7a-b093-75d702bea31d"}],functionParameter:{text1:{name:"文字 1",detail:"要聯結的第一個項目。 項目可以是文字值、數字或儲存格引用。 "},text2:{name:"文字 2",detail:"要聯結的其他文字項目。 最多可以有 255 個項目,總共最多支援 8,192 個字元。 "}}},DBCS:{description:"將字串中的半角(單字節)英文字母或片假名更改為全角(雙字節)字元",abstract:"將字串中的半角(單字節)英文字母或片假名更改為全角(雙字節)字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dbcs-%E5%87%BD%E6%95%B0-a4025e73-63d2-4958-9423-21a24794c9e5"}],functionParameter:{text:{name:"文字",detail:"文字或儲存格參照,其中包含所要變更的文字。 如果文字中不包含任何半形英文字母或片假名,文字就不會變更。"}}},DOLLAR:{description:"使用貨幣格式將數字轉換為文本",abstract:"使用貨幣格式將數字轉換為文本",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dollar-%E5%87%BD%E6%95%B0-a6cd05d9-9740-4ad3-a469-8109d18ff611"}],functionParameter:{number:{name:"數值",detail:"一個數字、一個含有數字之儲存格的參照,或一個評估為數字的公式。"},decimals:{name:"小數位數",detail:"小數點右邊的小數位數。 如果是負數,則會將數位四捨五入到小數點的左邊。 如果省略 decimals,則假設為 2。"}}},EXACT:{description:"檢查兩個文字值是否相同",abstract:"檢查兩個文字值是否相同",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/exact-%E5%87%BD%E6%95%B0-d3087698-fc15-4a15-9631-12575cf29926"}],functionParameter:{text1:{name:"文字1",detail:"第一個文字字串。"},text2:{name:"文字2",detail:"第二個文字字串。"}}},FIND:{description:"在一個文字值中找另一個文字值(區分大小寫)",abstract:"在一個文字值中找另一個文字值(區分大小寫)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"搜尋字串",detail:"要在“要搜尋的文字”中尋找的字串。"},withinText:{name:"要搜尋的文字",detail:"要搜尋“搜尋字串”的首次出現的文字。"},startNum:{name:"開始位置",detail:"要在“要搜尋的文字”中開始搜尋的字元位置。若省略則假定其值為 1。"}}},FINDB:{description:"在一個文字值中找另一個文字值(區分大小寫)",abstract:"在一個文字值中找另一個文字值(區分大小寫)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628"}],functionParameter:{findText:{name:"搜尋字串",detail:"要在“要搜尋的文字”中尋找的字串。"},withinText:{name:"要搜尋的文字",detail:"要搜尋“搜尋字串”的首次出現的文字。"},startNum:{name:"開始位置",detail:"要在“要搜尋的文字”中開始搜尋的字元位置。若省略則假定其值為 1。"}}},FIXED:{description:"將數字格式設定為具有固定小數位數的文字",abstract:"將數字格式設定為具有固定小數位數的文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fixed-%E5%87%BD%E6%95%B0-ffd5723c-324c-45e9-8b96-e41be2a8274a"}],functionParameter:{number:{name:"數值",detail:"要四捨五入並轉換為文字的數字。"},decimals:{name:"小數位數",detail:"小數點右邊的小數位數。 如果是負數,則會將數位四捨五入到小數點的左邊。 如果省略 decimals,則假設為 2。"},noCommas:{name:"禁用分隔符",detail:"邏輯值,如果為 TRUE,會阻止 FIXED 在傳回的文字中包含逗號。"}}},LEFT:{description:"傳回文字值中最左邊的字元",abstract:"傳回文字值中最左邊的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},numChars:{name:"字元數",detail:"指定要 LEFT 擷取的字元數目。"}}},LEFTB:{description:"傳回文字值中最左邊的字元",abstract:"傳回文字值中最左邊的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},numBytes:{name:"字節數",detail:"指定要 LEFTB 擷取的字元數目,以位元組為單位。"}}},LEN:{description:"傳回文字字串中的字元數",abstract:"傳回文字字串中的字元數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"文字",detail:"要找出其長度的文字。 空格將作為字元進行計數。"}}},LENB:{description:"傳回文字字串中用於代表字元的位元組數。 ",abstract:"返回文字字串中用於代表字元的位元組數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb"}],functionParameter:{text:{name:"文字",detail:"要找出其長度的文字。 空格將作為字元進行計數。"}}},LOWER:{description:"將文字轉換為小寫。",abstract:"將文字轉換為小寫",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lower-%E5%87%BD%E6%95%B0-3f21df02-a80c-44b2-afaf-81358f9fdeb4"}],functionParameter:{text:{name:"文字",detail:"要轉換成小寫的文字。"}}},MID:{description:"從文字字串中的指定位置起傳回特定個數的字元",abstract:"從文字字串中的指定位置起傳回特定個數的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},startNum:{name:"開始位置",detail:"要在文字中擷取之第一個字元的位置。"},numChars:{name:"字元數",detail:"指定要 MID 擷取的字元數目。"}}},MIDB:{description:"從文字字串中的指定位置起傳回特定個數的字元",abstract:"從文字字串中的指定位置起傳回特定個數的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},startNum:{name:"開始位置",detail:"要在文字中擷取之第一個字元的位置。"},numBytes:{name:"字節數",detail:"指定要 MIDB 擷取的字元數目,以位元組為單位。"}}},NUMBERSTRING:{description:"將數字轉換為中文字符串",abstract:"將數字轉換為中文字符串",links:[{title:"教導",url:"https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function"}],functionParameter:{number:{name:"數值",detail:"被轉換為中文字符串的數值。"},type:{name:"類型",detail:`傳回結果的類型。 +1. 漢字小寫 +2. 漢字大寫 +3. 漢字讀寫`}}},NUMBERVALUE:{description:"以與區域設定無關的方式將文字轉換為數字",abstract:"以與區域設定無關的方式將文字轉換為數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/numbervalue-%E5%87%BD%E6%95%B0-1b05c8cf-2bfa-4437-af70-596c7ea7d879"}],functionParameter:{text:{name:"文字",detail:"要轉換成數位的文字。"},decimalSeparator:{name:"小數分隔符",detail:"用來分隔結果整數和小數部分的字元。"},groupSeparator:{name:"群組分隔符",detail:"用來分隔數位群組的字元。"}}},PHONETIC:{description:"提取文字字串中的拼音(漢字注音)字元",abstract:"提取文字字串中的拼音(漢字註音)字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/phonetic-%E5%87%BD%E6%95%B0-9a329dac-0c0f-42f8-9a55-639086988554"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},PROPER:{description:"將文字值的每個字的首字母大寫",abstract:"將文字值的每個字的首字母大寫",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/proper-%E5%87%BD%E6%95%B0-52a5a283-e8b2-49be-8506-b2887b889f94"}],functionParameter:{text:{name:"文字",detail:"以引號括住的文字、傳回文字的公式,或包含要將部分變為大寫之文字的儲存格參照。"}}},REGEXEXTRACT:{description:"根據規則運算式擷取第一個符合規則的字串。",abstract:"根據規則運算式擷取第一個符合規則的字串。",links:[{title:"教導",url:"https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=zh-Hant"}],functionParameter:{text:{name:"文字",detail:"輸入文字"},regularExpression:{name:"規則運算式",detail:"指定規則運算式,系統就會傳回 text 中第一個符合此運算式的字串。"}}},REGEXMATCH:{description:"某段文字是否符合規則運算式。",abstract:"某段文字是否符合規則運算式。",links:[{title:"教導",url:"https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=zh-Hant"}],functionParameter:{text:{name:"文字",detail:"系統會根據規則運算式測試此文字。"},regularExpression:{name:"規則運算式",detail:"用來測試文字的規則運算式。"}}},REGEXREPLACE:{description:"利用規則運算式將文字字串的一部分取代成其他文字字串。",abstract:"利用規則運算式將文字字串的一部分取代成其他文字字串。",links:[{title:"教導",url:"https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=zh-Hant"}],functionParameter:{text:{name:"文字",detail:"系統會取代這段文字的部分區段。"},regularExpression:{name:"規則運算式",detail:"規則運算式。系統將替換 text 中所有相符的項目。"},replacement:{name:"取代文字",detail:"系統會將這段文字插入原來的文字。"}}},REPLACE:{description:"替換文字中的字元",abstract:"替換文字中的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"舊文字",detail:"要替換其中某些字元的文字。"},startNum:{name:"開始位置",detail:"要在文字中替換的第一個字元的位置。"},numChars:{name:"字元數",detail:"指定要 REPLACE 替換的字元數目。"},newText:{name:"替換文字",detail:"在舊文字中要替換字元的文字。"}}},REPLACEB:{description:"替換文字中的字元",abstract:"替換文字中的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a"}],functionParameter:{oldText:{name:"舊文字",detail:"要替換其中某些字元的文字。"},startNum:{name:"開始位置",detail:"要在文字中替換的第一個字元的位置。"},numBytes:{name:"字節數",detail:"指定要 REPLACEB 替換的字元數目,以位元組為單位。"},newText:{name:"替換文字",detail:"在舊文字中要替換字元的文字。"}}},REPT:{description:"按給定次數重複文字",abstract:"按給定次數重複文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rept-%E5%87%BD%E6%95%B0-04c4d778-e712-43b4-9c15-d656582bb061"}],functionParameter:{text:{name:"文字",detail:"要重複的文字。"},numberTimes:{name:"重複次數",detail:"指定文字重複次數的正數。"}}},RIGHT:{description:"傳回文字值中最右邊的字元",abstract:"傳回文字值中最右邊的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},numChars:{name:"字元數",detail:"指定要 RIGHT 擷取的字元數目。"}}},RIGHTB:{description:"傳回文字值中最右邊的字元",abstract:"傳回文字值中最右邊的字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f"}],functionParameter:{text:{name:"文字",detail:"包含想擷取之字元的文字字串。"},numBytes:{name:"字節數",detail:"指定要 RIGHTB 擷取的字元數目,以位元組為單位。"}}},SEARCH:{description:"在一個文字值中找另一個文字值(不區分大小寫)",abstract:"在一個文字值中找另一個文字值(不區分大小寫)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"搜尋字串",detail:"要在“要搜尋的文字”中尋找的字串。"},withinText:{name:"要搜尋的文字",detail:"要搜尋“搜尋字串”的首次出現的文字。"},startNum:{name:"開始位置",detail:"要在“要搜尋的文字”中開始搜尋的字元位置。若省略則假定其值為 1。"}}},SEARCHB:{description:"在一個文字值中找另一個文字值(不區分大小寫)",abstract:"在一個文字值中找另一個文字值(不區分大小寫)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495"}],functionParameter:{findText:{name:"搜尋字串",detail:"要在“要搜尋的文字”中尋找的字串。"},withinText:{name:"要搜尋的文字",detail:"要搜尋“搜尋字串”的首次出現的文字。"},startNum:{name:"開始位置",detail:"要在“要搜尋的文字”中開始搜尋的字元位置。若省略則假定其值為 1。"}}},SUBSTITUTE:{description:"在文字字符串中以新文字取代舊文字",abstract:"在文字字串中用新文字取代舊文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/substitute-%E5%87%BD%E6%95%B0-6434944e-a904-4336-a9b0-1e58df3bc332"}],functionParameter:{text:{name:"文字",detail:"包含要以字元取代文字的文字或參照。"},oldText:{name:"搜尋文字",detail:"要取代的文字。"},newText:{name:"取代文字",detail:"要用來取代 old_text 的文字。"},instanceNum:{name:"指定取代對象",detail:"指定要將第幾個 old_text 取代為 new_text。 如果指定 instance_num,則只會取代該 old_text。 否則,text 中的每一個 old_text 都會變更為 new_text。"}}},T:{description:"將參數轉換為文字",abstract:"將參數轉換為文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/t-%E5%87%BD%E6%95%B0-fb83aeec-45e7-4924-af95-53e073541228"}],functionParameter:{value:{name:"值",detail:"要檢定的值。"}}},TEXT:{description:"設定數字格式並將其轉換為文字",abstract:"設定數字格式並將其轉換為文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/text-%E5%87%BD%E6%95%B0-20d5ac4d-7b94-49fd-bb38-93d29371225c"}],functionParameter:{value:{name:"值",detail:"要轉換為文字的數值。 "},formatText:{name:"數字格式",detail:"一個文字字串,定義要套用於所提供值的格式。 "}}},TEXTAFTER:{description:"傳回給定字元或字串之後出現的文字",abstract:"傳回給定字元或字串之後出現的文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/textafter-%E5%87%BD%E6%95%B0-c8db2546-5b51-416a-9690-c7e6722e90b4"}],functionParameter:{text:{name:"文字",detail:"在此搜尋的文字。不允許萬用字元。"},delimiter:{name:"分隔符號",detail:"標記要擷取之點之後的文字。"},instanceNum:{name:"實例編號",detail:"要解壓縮文字的分隔符號實例。"},matchMode:{name:"匹配模式",detail:"判斷文字搜尋是否區分大小寫。預設值會區分大小寫。"},matchEnd:{name:"結尾匹配",detail:"將文字結尾視為分隔符號。根據預設,文字是完全相符項目。"},ifNotFound:{name:"未匹配到的值",detail:"找不到相符項目時傳回的值。根據預設,會傳回 #N/A。"}}},TEXTBEFORE:{description:"傳回出現在給定字元或字串之前的文字",abstract:"傳回出現在給定字元或字串之前的文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/textbefore-%E5%87%BD%E6%95%B0-d099c28a-dba8-448e-ac6c-f086d0fa1b29"}],functionParameter:{text:{name:"文字",detail:"在此搜尋的文字。不允許萬用字元。"},delimiter:{name:"分隔符號",detail:"標記要擷取之點之後的文字。"},instanceNum:{name:"實例編號",detail:"要解壓縮文字的分隔符號實例。"},matchMode:{name:"匹配模式",detail:"判斷文字搜尋是否區分大小寫。預設值會區分大小寫。"},matchEnd:{name:"結尾匹配",detail:"將文字結尾視為分隔符號。根據預設,文字是完全相符項目。"},ifNotFound:{name:"未匹配到的值",detail:"找不到相符項目時傳回的值。根據預設,會傳回 #N/A。"}}},TEXTJOIN:{description:"合併來自多個區域和/或字串的文字",abstract:"合併來自多個區域和/或字串的文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/textjoin-%E5%87%BD%E6%95%B0-357b449a-ec91-49d0-80c3-0e8fc845691c"}],functionParameter:{delimiter:{name:"分隔符號",detail:"文字字串,可以是空白、雙引號括起來的一或多個字元,或是有效文字字串的參照。"},ignoreEmpty:{name:"忽略空白",detail:"如果為 TRUE,則會忽略空白儲存格。"},text1:{name:"文字1",detail:"要加入的文字項目。 文字字串或字串陣列,例如儲存格範圍。"},text2:{name:"文字2",detail:"要加入的其他文字項目。 文字項目最多可有 252 個文字引數,包含 text1。 每個項目可以是文字字串或字串陣列,例如儲存格範圍。"}}},TEXTSPLIT:{description:"使用列分隔符號和行分隔符號拆分文字字串",abstract:"使用列分隔符號和行分隔符號拆分文字字串",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/textsplit-%E5%87%BD%E6%95%B0-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7"}],functionParameter:{text:{name:"文字",detail:"要拆分的文字。"},colDelimiter:{name:"列分隔符",detail:"若要拆分列依據的字元或字串。"},rowDelimiter:{name:"行分隔符",detail:"若要拆分行依據的字元或字串。"},ignoreEmpty:{name:"忽略空單元格",detail:"是否忽略空單元格。預設為 FALSE。"},matchMode:{name:"匹配模式",detail:"搜尋文字中的分隔符號匹配。預設情況下,會進行區分大小寫的匹配。"},padWith:{name:"填充值",detail:"用於填充的值。預設情況下,使用 #N/A。"}}},TRIM:{description:"刪除文字的所有空格,僅保留單字之間的單個空格。",abstract:"刪除文字中的空格",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/trim-%E5%87%BD%E6%95%B0-410388fa-c5df-49c6-b16c-9e5630b479f9"}],functionParameter:{text:{name:"文字",detail:"要從中刪除空格的文字。"}}},UNICHAR:{description:"傳回給定數值所引用的 Unicode 字元",abstract:"傳回給定數值所引用的 Unicode 字元",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/unichar-%E5%87%BD%E6%95%B0-ffeb64f5-f131-44c6-b332-5cd72f0659b8"}],functionParameter:{number:{name:"數值",detail:"是代表字元的 Unicode 數位。"}}},UNICODE:{description:"傳回對應於文字的第一個字元的數字(代碼點)",abstract:"傳回對應於文字的第一個字元的數字(代碼點)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/unicode-%E5%87%BD%E6%95%B0-adb74aaa-a2a5-4dde-aff6-966e4e81f16f"}],functionParameter:{text:{name:"文字",detail:"是要使用 Unicode 值的字元。"}}},UPPER:{description:"將文字轉換為大寫形式",abstract:"將文字轉換為大寫形式",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/upper-%E5%87%BD%E6%95%B0-c11f29b3-d1a3-4537-8df6-04d0049963d6"}],functionParameter:{text:{name:"文字",detail:"要轉換成大寫的文字。"}}},VALUE:{description:"將文字參數轉換為數字",abstract:"將文字參數轉換為數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/value-%E5%87%BD%E6%95%B0-257d0108-07dc-437d-ae1c-bc2d3953d8c2"}],functionParameter:{text:{name:"文字",detail:"以引號括住的文字或包含要轉換之文字的儲存格參照。"}}},VALUETOTEXT:{description:"從任意指定值返回文字",abstract:"從任意指定值返回文字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/valuetotext-%E5%87%BD%E6%95%B0-5fff61a2-301a-4ab2-9ffa-0a5242a08fea"}],functionParameter:{value:{name:"值",detail:"要以文字格式返回的值。"},format:{name:"資料格式",detail:`傳回資料的格式。它可以是兩個值的其中之一: +0 預設。 易於閱讀的精簡格式。 +1 包含逸出字元和列分隔符號的限定格式。 產生可在輸入至資料編輯列時進行剖析的字串。 封裝會以引號傳回字串,除了布林值、數字和錯誤以外。`}}},CALL:{description:"呼叫動態連結函式庫或程式碼來源中的過程",abstract:"呼叫動態連結函式庫或程式碼來源中的過程",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/call-%E5%87%BD%E6%95%B0-32d58445-e646-4ffd-8d5e-b45077a5e995"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},EUROCONVERT:{description:"用於將數字轉換為歐元形式,將數字由歐元形式轉換為歐元成員國貨幣形式,或利用歐元作為中間貨幣將數字由某一歐元成員國貨幣轉化為另一歐元成員國貨幣形式(三角轉換關係)",abstract:"用於將數字轉換為歐元形式,將數字由歐元形式轉換為歐元成員國貨幣形式,或利用歐元作為中間貨幣將數字由某一歐元成員國貨幣轉化為另一歐元成員國貨幣形式(三角轉換關係)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/euroconvert-%E5%87%BD%E6%95%B0-79c8fd67-c665-450c-bb6c-15fc92f8345c"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},REGISTER_ID:{description:"傳回已註冊過的指定動態連結程式庫 (DLL) 或程式碼來源的註冊號碼",abstract:"傳回已註冊的指定動態連結程式庫 (DLL) 或程式碼來源的註冊號碼",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/register-id-%E5%87%BD%E6%95%B0-f8f0af0f-fd66-4704-a0f2-87b27b175b50"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{AND:{description:"如果其所有參數均為 TRUE,則傳回 TRUE",abstract:"如果其所有參數均為 TRUE,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/and-%E5%87%BD%E6%95%B0-5f19b2e8-e1df-4408-897a-ce285a19e9d9"}],functionParameter:{logical1:{name:"邏輯值 1",detail:"第一個想要測試且計算結果可為 TRUE 或 FALSE 的條件。 "},logical2:{name:"邏輯值 2",detail:"其他想要測試且計算結果可為 TRUE 或 FALSE 的條件(最多 255 個條件)。 "}}},BYCOL:{description:"將 LAMBDA 套用至每個欄位並傳回結果陣列",abstract:"將 LAMBDA 套用至每個欄位並傳回結果陣列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bycol-%E5%87%BD%E6%95%B0-58463999-7de5-49ce-8f38-b7f7a2192bfb"}],functionParameter:{array:{name:"陣列",detail:"以欄分隔的陣列。"},lambda:{name:"lambda",detail:"採用欄作為單一參數並計算一個結果的 LAMBDA。LAMBDA 採用單一參數:陣列中的欄位。"}}},BYROW:{description:"將 LAMBDA 套用到每一列,並傳回結果陣列。",abstract:"將 LAMBDA 套用到每一列,並傳回結果陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/byrow-%E5%87%BD%E6%95%B0-2e04c677-78c8-4e6b-8c10-a4602f2602bb"}],functionParameter:{array:{name:"陣列",detail:"以列分隔的陣列。"},lambda:{name:"lambda",detail:"採用資料列作為單一參數並計算一個結果的 LAMBDA。 LAMBDA 接受單一參數:陣列中的一列。"}}},FALSE:{description:"傳回邏輯值 FALSE",abstract:"傳回邏輯值 FALSE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/false-%E5%87%BD%E6%95%B0-2d58dfa5-9c03-4259-bf8f-f0ae14346904"}],functionParameter:{}},IF:{description:"指定要執行的邏輯檢測",abstract:"指定要執行的邏輯偵測",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/if-%E5%87%BD%E6%95%B0-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2"}],functionParameter:{logicalTest:{name:"布林表達式",detail:"要測試的條件。 "},valueIfTrue:{name:"如果值為 true",detail:"logical_test 的結果為 TRUE 時,希望傳回的值。 "},valueIfFalse:{name:"如果值為 false",detail:"logical_test 的結果為 FALSE 時,希望傳回的值。 "}}},IFERROR:{description:"如果公式的計算結果錯誤,則傳回指定的值;否則傳回公式的結果",abstract:"如果公式的計算結果錯誤,則傳回指定的值;否則傳回公式的結果",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/iferror-%E5%87%BD%E6%95%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611"}],functionParameter:{value:{name:"值",detail:" 檢查是否有錯誤的參數。 "},valueIfError:{name:"錯誤時傳回值",detail:"公式計算結果為錯誤時要傳回的值。 評估以下錯誤類型:#N/A、#VALUE!、#REF!、#DIV/0!、#NUM!、#NAME? 或 #NULL!。 "}}},IFNA:{description:"如果該表達式解析為 #N/A,則傳回指定值;否則傳回該表達式的結果",abstract:"如果該表達式解析為 #N/A,則傳回指定值;否則傳回該表達式的結果",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ifna-%E5%87%BD%E6%95%B0-6626c961-a569-42fc-a49d-79b4951fd461"}],functionParameter:{value:{name:"值",detail:"已核取 #N/A 錯誤值的自變數。"},valueIfNa:{name:"如果為#N/A的值",detail:"如果公式評估為 #N/A 錯誤值,要傳回的值。"}}},IFS:{description:" 檢查是否符合一個或多個條件,是否傳回與第一個 TRUE 條件對應的值。 ",abstract:" 檢查是否滿足一個或多個條件,是否傳回與第一個 TRUE 條件對應的值。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ifs-%E5%87%BD%E6%95%B0-36329a26-37b2-467c-972b-4a39bd951d45"}],functionParameter:{logicalTest1:{name:"條件1",detail:"要評估的第一個條件,可以是布林值、數值、陣列或指向這些值的參考。"},valueIfTrue1:{name:"值1",detail:"“條件1”為“TRUE”的情況下傳回的值。"},logicalTest2:{name:"條件2",detail:"之前的條件為“FALSE”的情況下,要評估的其他條件。"},valueIfTrue2:{name:"值2",detail:"對應條件為“TRUE”的情況下傳回的其他值。"}}},LAMBDA:{description:"使用 LAMBDA 函數建立可重複使用的自訂函數,並使用易記名稱呼叫它們。 新函數在整個工作簿中可用,其呼叫類似本機 Excel 函數。 ",abstract:"建立自訂、可重用的函數,並透過友善名稱呼叫它們",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lambda-%E5%87%BD%E6%95%B0-bd212d27-1cd1-4321-a34a-ccbf254b8b67"}],functionParameter:{parameter:{name:"參數",detail:"要傳遞給函數的值,例如儲存格參考、字串或數字。 最多可以輸入 253 個參數。 此參數可選。 "},calculation:{name:"計算",detail:"要作為函數結果執行並傳回的公式。 其必須為最後一個參數,且必須傳回結果。 此參數是必需項。 "}}},LET:{description:"將名稱分配給計算結果",abstract:"將名稱分配給計算結果",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/let-%E5%87%BD%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999"}],functionParameter:{name1:{name:"名稱1",detail:"第一個指派的名稱。必須以字母開頭。不能是公式的輸出結果,或與範圍語法衝突。"},nameValue1:{name:"值1",detail:"指派給名稱1(name 1)的值。"},calculationOrName2:{name:"計算或名稱2",detail:`下列其中一項: +1.使用 LET 函數中所有名稱的計算。這必須是 LET 函數中的最後一個引數。 +2.指派給第二個 name_value 的第二個名稱。若有指定名稱,則必須要有 name_value2 和 calculation_ 或 _name3。`},nameValue2:{name:"值2",detail:"指派給 calculation_or_name2 的值。"},calculationOrName3:{name:"計算或名稱3",detail:`下列其中一項: +1.使用 LET 函數中所有名稱的計算。LET 函數中的最後一個引數必須是計算。 +2.指派給第三個 name_value 的第三個名稱。若有指定名稱,則必須要有 name_value3 和 calculation_ 或 _name4。`}}},MAKEARRAY:{description:"透過應用 LAMBDA 傳回指定行和列大小的計算數組",abstract:"透過應用 LAMBDA 傳回指定行和列大小的計算數組",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/makearray-%E5%87%BD%E6%95%B0-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"行數",detail:"陣列中的行數。 必須大於零"},number2:{name:"列數",detail:"陣列中的列數。 必須大於零"},value3:{name:"lambda",detail:"呼叫 LAMBDA 來建立陣列。 LAMBDA 接受兩個參數:row數組的行索引, col數組的列索引"}}},MAP:{description:"透過套用 LAMBDA 建立新值,傳回將陣列中每個值對應到新值所形成的陣列。",abstract:"透過套用 LAMBDA 建立新值,傳回將陣列中每個值對應到新值所形成的陣列。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/map-%E5%87%BD%E6%95%B0-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"陣列1",detail:"要對應的陣列1。"},array2:{name:"陣列2",detail:"要對應的陣列2。"},lambda:{name:"lambda",detail:"LAMBDA 必須是最後一個引數,也必須為每個陣列傳遞一個參數。"}}},NOT:{description:"對其參數的邏輯求反",abstract:"對其參數的邏輯求反",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/not-%E5%87%BD%E6%95%B0-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"邏輯表達式",detail:"要反轉邏輯的條件,可評估為 TRUE 或 FALSE。"}}},OR:{description:"如果 OR 函數的任意參數計算為 TRUE,則其傳回 TRUE;如果其所有參數均計算機為 FALSE,則傳回 FALSE。 ",abstract:"若任一參數為 TRUE,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/or-%E5%87%BD%E6%95%B0-7d17a​​d14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"邏輯表達式 1",detail:"第一個想要測試且計算結果可為 TRUE 或 FALSE 的條件。 "},logical2:{name:"邏輯表達式 2",detail:"其他想要測試且計算結果可為 TRUE 或 FALSE 的條件(最多 255 個條件)。 "}}},REDUCE:{description:"透過將 LAMBDA 套用至每個值並傳回累加器中的總值,將陣列減少為累積值",abstract:"透過將 LAMBDA 套用至每個值並傳回累加器中的總值,將陣列減少為累積值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/reduce-%E5%87%BD%E6%95%B0-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"起始值",detail:"設定累計值的起始值。"},array:{name:"陣列",detail:"要縮減的陣列。"},lambda:{name:"lambda",detail:"呼叫用於縮減陣列的 LAMBDA。 LAMBDA 需要三個參數:1.值已加總且傳回為最終結果。2.陣列的目前值。3.計算套用至陣列中每個元素。"}}},SCAN:{description:"透過將 LAMBDA 應用於每個值來掃描數組,並傳回具有每個中間值的數組",abstract:"透過將 LAMBDA 套用至每個值來掃描數組,並傳回具有每個中間值的陣列",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/scan-%E5%87%BD%E6%95%B0-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"起始值",detail:"設定累計值的起始值。"},array:{name:"陣列",detail:"要掃描的陣列。"},lambda:{name:"lambda",detail:"呼叫用於掃描陣列的 LAMBDA。 LAMBDA 需要三個參數:1.值已加總且傳回為最終結果。2.陣列的目前值。3.計算套用至陣列中每個元素。"}}},SWITCH:{description:"根據值列表計算表達式,並傳回與第一個匹配值對應的結果。 如果不匹配,則可能傳回可選預設值。 ",abstract:"根據值列表計算表達式,並傳回與第一個符合值對應的結果。 如果不匹配,則可能傳回可選預設值。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/switch-%E5%87%BD%E6%95%B0-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"表達式",detail:"表達式是將要與 值1…值126 進行比較的值(例如數字、日期或一些文字)。"},value1:{name:"值1",detail:"值N 是將要與表達式進行比較的值。"},result1:{name:"結果1",detail:"結果N 是對應的值N 參數與表達式匹配時要傳回的值。必須為每個對應的值N 參數提供結果N。"},defaultOrValue2:{name:"預設或值2",detail:"預設是在值N 表達式中找不到匹配項時要傳回的值。預設參數透過沒有對應的結果N 表達式來識別(請參閱範例)。預設必須是函數中的最後一個參數。"},result2:{name:"結果2",detail:"結果N 是對應的值N 參數與表達式匹配時要傳回的值。必須為每個對應的值N 參數提供結果N。"}}},TRUE:{description:"傳回邏輯值 TRUE",abstract:"傳回邏輯值 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/true-%E5%87%BD%E6%95%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"傳回所有參數的邏輯「異或」值",abstract:"傳回所有參數的邏輯「異或」值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/xor-%E5%87%BD%E6%95%B0-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"邏輯表達式 1",detail:"第一個想要測試且計算結果可為 TRUE 或 FALSE 的條件。 "},logical2:{name:"邏輯表達式 2",detail:"其他想要測試且計算結果可為 TRUE 或 FALSE 的條件(最多 255 個條件)。 "}}}},...{CELL:{description:"傳回有關儲存格格式、位置或內容的資訊",abstract:"傳回有關儲存格格式、位置或內容的資訊",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cell-%E5%87%BD%E6%95%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"資訊類型",detail:"指定所要傳回何種儲存格資訊類型的文字值。"},reference:{name:"參考",detail:"要取得其相關資訊的儲存格。"}}},ERROR_TYPE:{description:"傳回對應於錯誤類型的數字",abstract:"傳回對應於錯誤類型的數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/error-type-%E5%87%BD%E6%95%B0-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"錯誤值",detail:"要尋找之識別數字的錯誤值。"}}},INFO:{description:"傳回有關目前操作環境的資訊",abstract:"傳回目前操作環境的資訊",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/info-%E5%87%BD%E6%95%B0-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"檢查提供的數字是否介於另外兩個值之間",abstract:"檢查提供的數字是否介於另外兩個值之間",links:[{title:"教導",url:"https://support.google.com/docs/answer/10538337?hl=zh-Hant&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"比較值",detail:"要比較的值,以查看該值是否介於「最小值」和「最大值」之間。"},lowerValue:{name:"最小值",detail:"範圍的下限值,「比較值」可能落在這個範圍內。"},upperValue:{name:"最大值",detail:"範圍的上限值,「比較值」可能落在這個範圍內。"},lowerValueIsInclusive:{name:"包括最小值",detail:"用於指定「最小值」這個值是否包含在範圍中 (預設是 TRUE)。"},upperValueIsInclusive:{name:"包括最大值",detail:"用於指定「最大值」這個值是否包含在範圍中 (預設是 TRUE)。"}}},ISBLANK:{description:"如果值為空,則傳回 TRUE",abstract:"若值為空,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISDATE:{description:"針對特定值是否可轉換為日期傳回結果",abstract:"針對特定值是否可轉換為日期傳回結果",links:[{title:"教導",url:"https://support.google.com/docs/answer/9061381?hl=zh-Hant&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"值",detail:"要驗證是否為日期的值。"}}},ISEMAIL:{description:"檢查某個值是否為有效的電子郵件地址",abstract:"檢查某個值是否為有效的電子郵件地址",links:[{title:"教導",url:"https://support.google.com/docs/answer/3256503?hl=zh-Hant&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"值",detail:"要驗證是否為電子郵件地址的值。"}}},ISERR:{description:"如果值為 #N/A 以外的任何錯誤值,則傳回 TRUE",abstract:"如果值為 #N/A 以外的任何錯誤值,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISERROR:{description:"如果值為任何錯誤值,則傳回 TRUE",abstract:"如果值為任何錯誤值,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISEVEN:{description:"若數字為偶數,則傳回 TRUE",abstract:"若數字為偶數,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/iseven-%E5%87%BD%E6%95%B0-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"值",detail:"要測試的值。如果值不是整數,將被截尾取整。"}}},ISFORMULA:{description:"檢查是否有參照包含公式的儲存格,並傳回 TRUE 或 FALSE。",abstract:"檢查是否有參照包含公式的儲存格,並傳回 TRUE 或 FALSE。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/isformula-%E5%87%BD%E6%95%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"參照",detail:"是要測試之儲存格的參照。"}}},ISLOGICAL:{description:"如果值為邏輯值,則傳回 TRUE",abstract:"如果值為邏輯值,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISNA:{description:"如果值為錯誤值 #N/A,則傳回 TRUE",abstract:"如果值為錯誤值 #N/A,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISNONTEXT:{description:"如果值不是文本,則傳回 TRUE",abstract:"如果值不是文本,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISNUMBER:{description:"如果值為數字,則傳回 TRUE",abstract:"如果值為數字,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISODD:{description:"若數字為奇數,則傳回 TRUE",abstract:"若數字為奇數,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/isodd-%E5%87%BD%E6%95%B0-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"值",detail:"要測試的值。如果值不是整數,將被截尾取整。"}}},ISOMITTED:{description:"檢查 LAMBDA 中的值是否缺失,並傳回 TRUE 或 FALSE",abstract:"檢查 LAMBDA 中的值是否缺失,並傳回 TRUE 或 FALSE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/isomitted-%E5%87%BD%E6%95%B0-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"如果值為參考值,則傳回 TRUE",abstract:"如果值為參考值,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:" 指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISTEXT:{description:"如果值為文本,則傳回 TRUE",abstract:"如果值為文本,則傳回 TRUE",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"值",detail:"指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。"}}},ISURL:{description:"檢查特定值是否為有效的網址",abstract:"檢查特定值是否為有效的網址",links:[{title:"教導",url:"https://support.google.com/docs/answer/3256501?hl=zh-Hant&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"值",detail:"要驗證是否為網址的值。"}}},N:{description:"返回轉換為數字的值",abstract:"返回轉換為數字的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/n-%E5%87%BD%E6%95%B0-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"值",detail:"要轉換的值。"}}},NA:{description:"傳回錯誤值 #N/A",abstract:"傳回錯誤值 #N/A",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/na-%E5%87%BD%E6%95%B0-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"傳回引用工作表的工作表編號",abstract:"傳回引用工作表的工作表編號",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sheet-%E5%87%BD%E6%95%B0-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"值",detail:"要輸入工作表編號的工作表名稱或參照。 如果省略,SHEET 會傳回包含該函數的工作表編號。"}}},SHEETS:{description:"傳回工作簿中的工作表數",abstract:"傳回工作簿中的工作表數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/sheets-%E5%87%BD%E6%95%B0-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"傳回表示值的資料型別的數字",abstract:"傳回表示值的資料型別的數字",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/type-%E5%87%BD%E6%95%B0-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"值",detail:"這可以是任何值,如數字、文字、邏輯值等。"}}}},...{BESSELI:{description:"傳回修正的貝賽耳函數 In(x)",abstract:"傳回修正的貝賽耳函數 In(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/besseli-%E5%87%BD%E6%95%B0-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"用於評估函數的值。"},n:{name:"N",detail:"Bessel函數的順序。如果n不是整數,則會取至整數。"}}},BESSELJ:{description:"傳回貝賽耳函數 Jn(x)",abstract:"返回貝賽耳函數 Jn(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/besselj-%E5%87%BD%E6%95%B0-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"用於評估函數的值。"},n:{name:"N",detail:"Bessel函數的順序。如果n不是整數,則會取至整數。"}}},BESSELK:{description:"傳回修正的貝賽耳函數 Kn(x)",abstract:"返回修正的貝賽耳函數 Kn(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/besselk-%E5%87%BD%E6%95%B0-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"用於評估函數的值。"},n:{name:"N",detail:"Bessel函數的順序。如果n不是整數,則會取至整數。"}}},BESSELY:{description:"傳回貝賽耳函數 Yn(x)",abstract:"返回貝賽耳函數 Yn(x)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bessely-%E5%87%BD%E6%95%B0-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"用於評估函數的值。"},n:{name:"N",detail:"Bessel函數的順序。如果n不是整數,則會取至整數。"}}},BIN2DEC:{description:"將二進制數轉換為十進制數",abstract:"將二進位數轉換為十進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bin2dec-%E5%87%BD%E6%95%B0-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"二進制數",detail:"要轉換的二進制數。"}}},BIN2HEX:{description:"將二進制數轉換為十六進制數",abstract:"將二進位數轉換為十六進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bin2hex-%E5%87%BD%E6%95%B0-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"二進制數",detail:"要轉換的二進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},BIN2OCT:{description:"將二進制數轉換為八進制數",abstract:"將二進位數轉換為八進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bin2oct-%E5%87%BD%E6%95%B0-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"二進制數",detail:"要轉換的二進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},BITAND:{description:"傳回兩個數的「位元與」",abstract:"傳回兩數的「位元與」",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bitand-%E5%87%BD%E6%95%B0-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"數值1",detail:"必須是十進位格式,且大於或等於 0。"},number2:{name:"數值2",detail:"必須是十進位格式,且大於或等於 0。"}}},BITLSHIFT:{description:"傳回左移 shift_amount 位的計算值接收數",abstract:"傳回左移 shift_amount 位元的計算值接收數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bitlshift-%E5%87%BD%E6%95%B0-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"數值",detail:"必須是大於或等於 0 的整數。"},shiftAmount:{name:"移位量",detail:"必須是整數。"}}},BITOR:{description:"傳回兩個數的「位元或」",abstract:"傳回兩個數字的「位元或」",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bitor-%E5%87%BD%E6%95%B0-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"數值1",detail:"必須是十進位格式,且大於或等於 0。"},number2:{name:"數值2",detail:"必須是十進位格式,且大於或等於 0。"}}},BITRSHIFT:{description:"傳回右移 shift_amount 位元的計算值接收數",abstract:"返回右移 shift_amount 位元的計算值接收數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bitrshift-%E5%87%BD%E6%;95%B0-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"數值",detail:"必須是大於或等於 0 的整數。"},shiftAmount:{name:"移位量",detail:"必須是整數。"}}},BITXOR:{description:"傳回兩個數的位元「異或」",abstract:"傳回兩數的位元「異或」",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/bitxor-%E5%87%BD%E6%95%B0-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"數值1",detail:"必須是十進位格式,且大於或等於 0。"},number2:{name:"數值2",detail:"必須是十進位格式,且大於或等於 0。"}}},COMPLEX:{description:"將實係數和虛係數轉換為複數",abstract:"將實係數和虛係數轉換為複數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/complex-%E5%87%BD%E6%95%B0-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"實係數",detail:"複數的實係數。"},iNum:{name:"虛係數",detail:"複數的虛係數。"},suffix:{name:"字尾",detail:'複數虛數元件的字尾。如果省略,會將字尾假設為 "i"。'}}},CONVERT:{description:"將數字從一種度量系統轉換為另一種度量系統",abstract:"將數字從一種度量系統轉換為另一種度量系統",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/convert-%E5%87%BD%E6%95%B0-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"數值",detail:"要轉換的值。"},fromUnit:{name:"轉換前單位",detail:"數值的單位。"},toUnit:{name:"轉換后單位",detail:"結果的單位。"}}},DEC2BIN:{description:"將十進制數轉換為二進制數",abstract:"將十進位數轉換為二進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dec2bin-%E5%87%BD%E6%95%B0-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"十進制數",detail:"要轉換的十進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},DEC2HEX:{description:"將十進制數轉換為十六進制數",abstract:"將十進位數轉換為十六進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dec2hex-%E5%87%BD%E6%95%B0-6344ee8b-b6b5-4c6a-a672-f646666704619"}],functionParameter:{number:{name:"十進制數",detail:"要轉換的十進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},DEC2OCT:{description:"將十進制數轉換為八進制數",abstract:"將十進位數轉換為八進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/dec2oct-%E5%87%BD%E6%95%B0-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"十進制數",detail:"要轉換的十進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},DELTA:{description:"檢驗兩個值是否相等",abstract:"檢驗兩個值是否相等",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/delta-%E5%87%BD%E6%95%B0-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"數值1",detail:"第一個數值。"},number2:{name:"數值2",detail:"第二個數值。如果省略,會將數值2假設為零。"}}},ERF:{description:"返回誤差函數",abstract:"返回誤差函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/erf-%E5%87%BD%E6%95%B0-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"下限",detail:"整合ERF的下限。"},upperLimit:{name:"上限",detail:"整合ERF的上限。如果省略,ERF會在零和下限之間整合。"}}},ERF_PRECISE:{description:"返回誤差函數",abstract:"返回誤差函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/erf-precise-%E5%87%BD%E6%95%B0-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"下限",detail:"整合ERF.PRECISE的下限。"}}},ERFC:{description:"返回互補誤差函數",abstract:"返回互補誤差函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/erfc-%E5%87%BD%E6%95%B0-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"下限",detail:"整合ERFC的下限。"}}},ERFC_PRECISE:{description:"傳回從 x 到無窮大積分的互補 ERF 函數",abstract:"傳回從 x 到無窮大積分的互補 ERF 函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/erfc-precise-%E5%87%BD%E6%95%B0-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"下限",detail:"整合ERFC.PRECISE的下限。"}}},GESTEP:{description:"檢驗數字是否大於門檻",abstract:"檢驗數字是否大於門檻",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gestep-%E5%87%BD%E6%95%B0-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"數值",detail:"要檢定閾值的值。"},step:{name:"閾值",detail:"閾值。如果省略閾值的值,GESTEP 會使用零。"}}},HEX2BIN:{description:"將十六進制數轉換為二進制數",abstract:"將十六進位數轉換為二進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hex2bin-%E5%87%BD%E6%95%B0-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"十六進制數",detail:"要轉換的十六進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},HEX2DEC:{description:"將十六進制數轉換為十進制數",abstract:"將十六進位數轉換為十進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hex2dec-%E5%87%BD%E6%95%B0-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"十六進制數",detail:"要轉換的十六進制數。"}}},HEX2OCT:{description:"將十六進制數轉換為八進制數",abstract:"將十六進位數轉換為八進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hex2oct-%E5%87%BD%E6%95%B0-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"十六進制數",detail:"要轉換的十六進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},IMABS:{description:"傳回複數的絕對值(模數)",abstract:"傳回複數的絕對值(模)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imabs-%E5%87%BD%E6%95%B0-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"複數",detail:"要求得絕對值的複數。"}}},IMAGINARY:{description:"傳回複數的虛係數",abstract:"傳回複數的虛係數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imaginary-%E5%87%BD%E6%95%B0-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"複數",detail:"要求得虛係數的複數。"}}},IMARGUMENT:{description:"傳回參數 theta,即以弧度表示的角",abstract:"傳回參數 theta,即以弧度表示的角",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imargument-%E5%87%BD%E6%95%B0-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"複數",detail:"要求自變數 theta 的複數。"}}},IMCONJUGATE:{description:"傳回複數的共軛複數",abstract:"傳回複數的共軛複數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imconjugate-%E5%87%BD%E6%95%B0-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"複數",detail:"要求得共軛的複數。"}}},IMCOS:{description:"傳回複數的餘弦",abstract:"傳回複數的餘弦",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imcos-%E5%87%BD%E6%95%B0-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"複數",detail:"要求得餘弦值的複數。"}}},IMCOSH:{description:"傳回複數的雙曲餘弦值",abstract:"傳回複數的雙曲餘弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imcosh-%E5%87%BD%E6%95%B0-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"複數",detail:"要求得雙曲餘弦值的複數。"}}},IMCOT:{description:"傳回複數的餘切值",abstract:"傳回複數的餘切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imcot-%E5%87%BD%E6%95%B0-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"複數",detail:"要求得餘切值的複數。"}}},IMCOTH:{description:"傳回複數的雙曲餘切值",abstract:"傳回複數的雙曲餘切值",links:[{title:"教学",url:"https://support.google.com/docs/answer/9366256?hl=zh-Hant&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"複數",detail:"這是要求得雙曲餘切值的複數。"}}},IMCSC:{description:"傳回複數的餘割值",abstract:"傳回複數的餘割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imcsc-%E5%87%BD%E6%95%B0-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"複數",detail:"要求得餘割值的複數。"}}},IMCSCH:{description:"傳回複數的雙曲餘割值",abstract:"傳回複數的雙曲餘割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imcsch-%E5%87%BD%E6%95%B0-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"複數",detail:"要求得雙曲餘割值的複數。"}}},IMDIV:{description:"傳回兩個複數的商數",abstract:"傳回兩個複數的商",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imdiv-%E5%87%BD%E6%95%B0-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"複數分子",detail:"複數分子或被除數。"},inumber2:{name:"複數分母",detail:"複數分母或除數。"}}},IMEXP:{description:"傳回複數的指數",abstract:"傳回複數的指數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imexp-%E5%87%BD%E6%95%B0-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"複數",detail:"要求得指數的複數。"}}},IMLN:{description:"傳回複數的自然對數",abstract:"傳回複數的自然對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imln-%E5%87%BD%E6%95%B0-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"複數",detail:"要求得自然對數的複數。"}}},IMLOG:{description:"傳回複數的以特定底數的對數",abstract:"傳回複數的以特定底數的對數",links:[{title:"教導",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hant&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"複數",detail:"這是要求得以特定底數的對數的複數。"},base:{name:"底數",detail:"計算對數時所用的底數。"}}},IMLOG10:{description:"傳回複數的以 10 為底的對數",abstract:"傳回複數的以 10 為底的對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imlog10-%E5%87%BD%E6%95%B0-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"複數",detail:"要求得常用對數的複數。"}}},IMLOG2:{description:"傳回複數的以 2 為底的對數",abstract:"傳回複數的以 2 為底的對數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imlog2-%E5%87%BD%E6%95%B0-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"複數",detail:"要求得底數為 2 之對數的複數。"}}},IMPOWER:{description:"傳回複數的整數冪",abstract:"傳回複數的整數冪",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/impower-%E5%87%BD%E6%95%B0-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"複數",detail:"要遞增至乘冪的複數。"},number:{name:"數值",detail:"要遞增至複數的乘冪。"}}},IMPRODUCT:{description:"傳回多個複數的乘積",abstract:"傳回多個複數的乘積",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/improduct-%E5%87%BD%E6%95%B0-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"複數1",detail:"1 到 255 個要乘以的複數。"},inumber2:{name:"複數2",detail:"1 到 255 個要乘以的複數。"}}},IMREAL:{description:"傳回複數的實係數",abstract:"傳回複數的實係數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imreal-%E5%87%BD%E6%95%B0-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"複數",detail:"要求得實係數的複數。"}}},IMSEC:{description:"傳回複數的正割值",abstract:"傳回複數的正割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsec-%E5%87%BD%E6%95%B0-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"複數",detail:"要求得正割值的複數。"}}},IMSECH:{description:"傳回複數的雙曲正割值",abstract:"傳回複數的雙曲正割值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsech-%E5%87%BD%E6%95%B0-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"複數",detail:"要求得雙曲正割值的複數。"}}},IMSIN:{description:"傳回複數的正弦",abstract:"傳回複數的正弦",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsin-%E5%87%BD%E6%95%B0-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"複數",detail:"要求得正弦值的複數。"}}},IMSINH:{description:"傳回複數的雙曲正弦值",abstract:"傳回複數的雙曲正弦值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsinh-%E5%87%BD%E6%95%B0-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"複數",detail:"要求得雙曲正弦值的複數。"}}},IMSQRT:{description:"傳回複數的平方根",abstract:"傳回複數的平方根",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsqrt-%E5%87%BD%E6%95%B0-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"複數",detail:"要求得平方根的複數。"}}},IMSUB:{description:"傳回兩個複數的差",abstract:"傳回兩個複數的差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsub-%E5%87%BD%E6%95%B0-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"複數1",detail:"複數1。"},inumber2:{name:"複數2",detail:"複數2。"}}},IMSUM:{description:"傳回多個複數的和",abstract:"傳回多個複數的和",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imsum-%E5%87%BD%E6%95%B0-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"複數1",detail:"1 到 255 個要相加的複數。"},inumber2:{name:"複數2",detail:"1 到 255 個要相加的複數。"}}},IMTAN:{description:"傳回複數的正切值",abstract:"傳回複數的正切值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/imtan-%E5%87%BD%E6%95%B0-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"複數",detail:"要求得正切值的複數。"}}},IMTANH:{description:"傳回複數的雙曲正切值",abstract:"傳回複數的雙曲正切值",links:[{title:"教導",url:"https://support.google.com/docs/answer/9366655?hl=zh-Hant&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"複數",detail:"這是要求得雙曲正切值的複數。"}}},OCT2BIN:{description:"將八進制數轉換為二進制數",abstract:"將八進位數轉換為二進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oct2bin-%E5%87%BD%E6%95%B0-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"八進制數",detail:"要轉換的八進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}},OCT2DEC:{description:"將八進制數轉換為十進制數",abstract:"將八進位數轉換為十進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oct2dec-%E5%87%BD%E6%95%B0-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"八進制數",detail:"要轉換的八進制數。"}}},OCT2HEX:{description:"將八進制數轉換為十六進制數",abstract:"將八進位數轉換為十六進位數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/oct2hex-%E5%87%BD%E6%95%B0-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"八進制數",detail:"要轉換的八進制數。"},places:{name:"字元數",detail:"要使用的字元數。"}}}},...{CUBEKPIMEMBER:{description:"傳回重要效能指示器 (KPI) 屬性,並在儲存格中顯示 KPI 名稱。 KPI 是一種用於監控單位績效的可計量度量值,例如每月總利潤或季度員工調整。 ",abstract:"傳回重要效能指示器 (KPI) 屬性,並在儲存格中顯示 KPI 名稱。 KPI 是一種用於監控單位績效的可計量度量值,例如每月總利潤或季度員工調整。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubekpimember-%E5%87%BD%E6%95%B0-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"傳回多維資料集中的成員或元組。 用於驗證多維資料集內是否存在成員或元組。 ",abstract:"傳回多維資料集中的成員或元組。 用於驗證多維資料集內是否存在成員或元組。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubemember-%E5%87%BD%E6%95%B0-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"傳回多維資料集中成員屬性的值。 用於驗證多維資料集內是否存在某個成員名並傳回此成員的指定屬性。 ",abstract:"傳回多維資料集中成員屬性的值。 用於驗證多維資料集內是否存在某個成員名並傳回此成員的指定屬性。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubememberproperty-%E5%87%BD%E6%95%B0-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{description:"傳回集合中的第 n 個或排在一定名次的成員。 用來傳回集合中的一個或多個元素,如業績最好的銷售人員或前 10 名的學生。 ",abstract:"傳回集合中的第 n 個或排在一定名次的成員。 用來傳回集合中的一個或多個元素,如業績最好的銷售人員或前 10 名的學生。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cuberankedmember-%E5%87%BD%E6%95%B0-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{description:"定義成員或元組的計算集。方法是向伺服器上的多維資料集傳送集合表達式,此表達式會建立集合,並隨後將該集合傳回 Microsoft Excel。 ",abstract:"定義成員或元組的計算集。方法是向伺服器上的多維資料集傳送集合表達式,此表達式會建立集合,並隨後將該集合傳回 Microsoft Excel。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubeset-%E5%87%BD%E6%95%B0-5b2146bd-62d6-4d04-9d8f-670e9993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"傳回集合中的項目數。 ",abstract:"傳回集合中的項目數。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubesetcount-%E5%87%BD%E6%95%B0-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"從多維資料集中傳回匯總值。 ",abstract:"從多維資料集中傳回匯總值。 ",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/cubevalue-%E5%87%BD%E6%95%B0-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"傳回 beta 累積分佈函數",abstract:"傳回 beta 累積分佈函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/betadist-%E5%87%BD%E6%95%B0-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"值",detail:"用來計算其函數的值,介於下限值和上限值之間。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},A:{name:"下限",detail:"函數的下限,預設值為 0。"},B:{name:"上限",detail:"函數的上限,預設值為 1。"}}},BETAINV:{description:"傳回指定 beta 分佈的累積分佈函數的反函數",abstract:"傳回指定 beta 分佈的累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/betainv-%E5%87%BD%E6%95%B0-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"機率",detail:"beta 分佈的相關機率。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},A:{name:"下限",detail:"函數的下限,預設值為 0。"},B:{name:"上限",detail:"函數的上限,預設值為 1。"}}},BINOMDIST:{description:"傳回一元二項式分佈的機率",abstract:"傳回一元二項式分佈的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/binomdist-%E5%87%BD%E6%95%B0-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"成功次數",detail:"為實驗的成功次數。"},trials:{name:"實驗次數",detail:"為獨立實驗的次數。"},probabilityS:{name:"成功機率",detail:"每一次實驗的成功機率。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 BINOMDIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},CHIDIST:{description:"傳回 χ2 分佈的右尾機率",abstract:"傳回 χ2 分佈的右尾機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chidist-%E5%87%BD%E6%95%B0-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"值",detail:"用來評估分佈的值。"},degFreedom:{name:"自由度",detail:"自由度。"}}},CHIINV:{description:"傳回 χ2 分佈的右尾機率的反函數值。",abstract:"傳回 χ2 分佈的右尾機率的反函數值。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chiinv-%E5%87%BD%E6%95%B0-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"機率",detail:"與 χ2 分佈相關聯的機率。"},degFreedom:{name:"自由度",detail:"自由度。"}}},CHITEST:{description:"返回獨立性檢驗值",abstract:"返回獨立性檢驗值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/chitest-%E5%87%BD%E6%95%B0-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"觀察範圍",detail:"觀察值範圍,用來檢定預期值。"},expectedRange:{name:"預期範圍",detail:"資料範圍,其內容為各欄總和乘各列總和後的值,再除以全部值總和的比率。"}}},CONFIDENCE:{description:"使用常態分佈傳回總體平均值的置信區間。",abstract:"使用常態分佈傳回總體平均值的置信區間。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/confidence-%E5%87%BD%E6%95%B0-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"用於計算置信水準的顯著水準。置信水準等於 100*(1 - alpha)%,換句話說,alpha 0.05 表示信賴水準為 95%。"},standardDev:{name:"總體標準差",detail:"假設資料範圍的總體標準差已知。"},size:{name:"樣本大小",detail:"樣本大小。"}}},COVAR:{description:"傳回總體協方差,即兩個資料集中每對資料點的偏差乘積的平均值。",abstract:"傳回總體協方差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/covar-%E5%87%BD%E6%95%B0-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"陣列1",detail:"第一個儲存格值範圍。"},array2:{name:"陣列2",detail:"第二個儲存格值範圍。"}}},CRITBINOM:{description:"傳回使累積二項式分佈小於或等於臨界值的最小值",abstract:"傳回使累積二項式分佈小於或等於臨界值的最小值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/critbinom-%E5%87%BD%E6%95%B0-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"實驗次數",detail:"伯努利實驗的次數。"},probabilityS:{name:"成功機率",detail:"每一次實驗的成功機率。"},alpha:{name:"目標機率",detail:"臨界值。"}}},EXPONDIST:{description:"返回指數分佈",abstract:"返回指數分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/expondist-%E5%87%BD%E6%95%B0-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"值",detail:"用來評估分佈的值。"},lambda:{name:"lambda",detail:"參數值。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,EXPONDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},FDIST:{description:"傳回 F 機率分佈(右尾)",abstract:"傳回 F 機率分佈(右尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/fdist-%E5%87%BD%E6%95%B0-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"值",detail:"用於評估函數的值。"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"}}},FINV:{description:"傳回 F 機率分佈(右尾)的反函數",abstract:"傳回 F 機率分佈(右尾)的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/finv-%E5%87%BD%E6%95%B0-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"機率",detail:"F 累積分佈相關的機率"},degFreedom1:{name:"分子自由度",detail:"分子的自由度。"},degFreedom2:{name:"分母自由度",detail:"分母的自由度。"}}},FTEST:{description:"傳回 F 檢驗的結果",abstract:"傳回 F 檢驗的結果",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ftest-%E5%87%BD%E6%95%B0-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"陣列1",detail:"第一個陣列或資料範圍。"},array2:{name:"陣列2",detail:"第二個陣列或資料範圍。"}}},GAMMADIST:{description:"傳回 γ 分佈",abstract:"傳回 γ 分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gammadist-%E5%87%BD%E6%95%B0-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 GAMMADIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},GAMMAINV:{description:"傳回 γ 累積分佈函數的反函數",abstract:"傳回 γ 累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/gammainv-%E5%87%BD%E6%95%B0-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"機率",detail:"與伽瑪分佈的相關機率。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"}}},HYPGEOMDIST:{description:"返回超幾何分佈",abstract:"返回超幾何分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/hypgeomdist-%E5%87%BD%E6%95%B0-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"樣本成功次數",detail:"樣本中成功的次數。"},numberSample:{name:"樣本大小",detail:"樣本大小。"},populationS:{name:"總體成功次數",detail:"總體中成功的次數。"},numberPop:{name:"總體大小",detail:"總體大小。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 HYPGEOMDIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},LOGINV:{description:"傳回對數常態累積分佈的反函數",abstract:"傳回對數常態累積分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/loginv-%E5%87%BD%E6%95%B0-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"機率",detail:"對應到對數常態分佈的機率。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"}}},LOGNORMDIST:{description:"傳回對數常態累積分佈",abstract:"傳回對數常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/lognormdist-%E5%87%BD%E6%95%B0-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,LOGNORMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},MODE:{description:"傳回在資料集內出現次數最多的值",abstract:"傳回在資料集內出現次數最多的值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/mode-%E5%87%BD%E6%95%B0-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"數值 1",detail:"要計算眾數的第一個數字、儲存格參考或儲存格區域。 "},number2:{name:"數值 2",detail:"要計算眾數的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 "}}},NEGBINOMDIST:{description:"傳回負二項式分佈",abstract:"返回負二項式分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/negbinomdist-%E5%87%BD%E6%95%B0-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"失敗次數",detail:"失敗的次數。"},numberS:{name:"成功次數",detail:"成功的閥值數目。"},probabilityS:{name:"成功機率",detail:"成功的機率。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,NEGBINOMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},NORMDIST:{description:"傳回常態累積分佈",abstract:"返回常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/normdist-%E5%87%BD%E6%95%B0-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,NORMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},NORMINV:{description:"傳回常態累積分佈的反函數",abstract:"傳回常態累積分佈的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/norminv-%E5%87%BD%E6%95%B0-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"機率",detail:"對應到常態分佈的機率。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},standardDev:{name:"標準差",detail:"分佈的標準差。"}}},NORMSDIST:{description:"傳回標準常態累積分佈",abstract:"傳回標準常態累積分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/normsdist-%E5%87%BD%E6%95%B0-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"要找出分佈的數值。"}}},NORMSINV:{description:"傳回標準常態累積分佈函數的反函數",abstract:"傳回標準常態累積分佈函數的反函數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/normsinv-%E5%87%BD%E6%95%B0-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"機率",detail:"對應到常態分佈的機率。"}}},PERCENTILE:{description:"傳回資料集中第 k 個百分點的值 (包括 0 與 1)",abstract:"傳回資料集中第 k 個百分點的值 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentile-%E5%87%BD%E6%95%B0-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},k:{name:"k",detail:"在 0 到 1 範圍內 (包括 0 與 1) 的百分位數。"}}},PERCENTRANK:{description:"傳回資料集中值的百分比排位 (包括 0 與 1)",abstract:"傳回資料集中值的百分比排位 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/percentrank-%E5%87%BD%E6%95%B0-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"陣列",detail:"用以定義相對位置的陣列或資料範圍。"},x:{name:"x",detail:"想要知道排名的數值。"},significance:{name:"有效位數",detail:"用以識別傳回百分比值的最高有效位數之數值。 如果省略,PERCENTRANK 會使用三位小數 (0.xxx)。"}}},POISSON:{description:"返回泊松分佈",abstract:"返回泊松分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/poisson-%E5%87%BD%E6%95%B0-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},mean:{name:"平均值",detail:"分佈的算術平均值。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。 如果為 TRUE,POISSON 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。"}}},QUARTILE:{description:"傳回資料集的四分位數 (包括 0 與 1)",abstract:"傳回資料集的四分位數 (包括 0 與 1)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/quartile-%E5%87%BD%E6%95%B0-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"陣列",detail:"要求得四分位數值的陣列或資料範圍。"},quart:{name:"四分位值",detail:"要傳回的四分位數值。"}}},RANK:{description:"傳回一列數字的數字排位",abstract:"傳回一列數字的數字排位",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/rank-%E5%87%BD%E6%95%B0-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"數值",detail:"要找出其排名的數字。"},ref:{name:"數位清單",detail:"數位清單的參照。會忽略 ref 中的非數值。"},order:{name:"排列方式",detail:"指定排列數值方式的數字。0 或省略為遞減順序排序,非 0 為遞增順序排序。"}}},STDEV:{description:"根據樣本估計標準差。 標準差可以測量值在平均值(中位數)附近分佈的範圍大小。 ",abstract:"基於樣本估算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdev-%E5%87%BD%E6%95%B0-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體樣本的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體樣本的 2 到 255 個數值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},STDEVP:{description:"根據作為參數給定的整個總體計算標準偏差。 ",abstract:"基於整個樣本總體計算標準差",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/stdevp-%E5%87%BD%E6%95%B0-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體的 2 到 255 個數值參數。 也可以用單一數組或對某個數組的引用來代替用逗號分隔的參數。 "}}},TDIST:{description:"傳回學生的 t 機率分佈",abstract:"返回學生 t-分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tdist-%E5%87%BD%E6%95%B0-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"需要計算分佈的數值。"},degFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"},tails:{name:"尾部特性",detail:"指定要傳回之分佈尾數。 如果 Tails = 1,TDIST 會傳回單尾分佈。 如果 Tails = 2,TDIST 會傳回雙尾分佈。"}}},TINV:{description:"傳回學生的 t 機率分佈的反函數 (雙尾)",abstract:"傳回學生的 t 機率分佈的反函數 (雙尾)",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/tinv-%E5%87%BD%E6%95%B0-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"機率",detail:"與學生的 t 分佈相關的機率。"},dedegFreedom:{name:"自由度",detail:"一個表示自由度數的整數。"}}},TTEST:{description:"傳回與學生 t-檢定相關的機率",abstract:"返回與學生 t-檢定相關的機率",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ttest-%E5%87%BD%E6%95%B0-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"陣列1",detail:"第一個陣列或資料範圍。"},array2:{name:"陣列2",detail:"第二個陣列或資料範圍。"},tails:{name:"尾部特性",detail:"指定分佈的尾數。 如果 tails = 1,TTEST 會使用單尾分佈。 如果 tails = 2,TTEST 會使用雙尾分佈。"},type:{name:"檢定類型",detail:"要執行的 t 檢定類型。"}}},VAR:{description:"計算基於給定樣本的變異數。 ",abstract:"基於樣本估算變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/var-%E5%87%BD%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體樣本的第一個數值參數。 "},number2:{name:"數值 2",detail:"應於總體樣本的 2 到 255 個數值參數。 "}}},VARP:{description:"計算基於樣本總體的變異數。 ",abstract:"計算以樣本總體為基礎的變異數",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/varp-%E5%87%BD%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"數值 1",detail:"對應於總體的第一個數值參數。 "},number2:{name:"數值 2",detail:"對應於總體的 2 到 255 個數值參數。 "}}},WEIBULL:{description:"傳回 Weibull 分佈",abstract:"傳回 Weibull 分佈",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/weibull-%E5%87%BD%E6%95%B0-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"要找出分佈的數值。"},alpha:{name:"alpha",detail:"分佈的第一個參數。"},beta:{name:"beta",detail:"分佈的第二個參數。"},cumulative:{name:"累積",detail:"決定函數形式的邏輯值。如果為 TRUE,則 WEIBULL 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。"}}},ZTEST:{description:"傳回 z 檢定的單尾機率值",abstract:"傳回 z 檢定的單尾機率值",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/ztest-%E5%87%BD%E6%95%B0-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"陣列",detail:"用來檢定 x 的陣列或資料範圍。"},x:{name:"x",detail:"要檢定的值。"},sigma:{name:"標準差",detail:"總體(已知)標準差。如果省略,則使用樣本標準差。"}}}},...{ENCODEURL:{description:"傳回 URL 編碼的字串",abstract:"傳回 URL 編碼的字串",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/encodeurl-%E5%87%BD%E6%95%B0-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"文字",detail:"要編碼 URL 的字串"}}},FILTERXML:{description:"透過使用指定的 XPath,傳回 XML 內容中的特定資料",abstract:"透過使用指定的 XPath,傳回 XML 內容中的特定資料",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/filterxml-%E5%87%BD%E6%95%B0-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"傳回 Web 服務中的資料。",abstract:"傳回 Web 服務中的資料。",links:[{title:"教導",url:"https://support.microsoft.com/zh-tw/office/webservice-%E5%87%BD%E6%95%B0-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"限制特定大小的陣列結果",abstract:"限制特定大小的陣列結果",links:[{title:"教導",url:"https://support.google.com/docs/answer/3267036?hl=zh-Hant&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"陣列",detail:"限制的範圍。"},numRows:{name:"列數",detail:"結果所包含的列數。"},numCols:{name:"欄數",detail:"結果所包含的欄數。"}}},FLATTEN:{description:"將一或多個範圍中的所有值合併至單一欄",abstract:"將一或多個範圍中的所有值合併至單一欄",links:[{title:"教導",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hant&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"範圍1",detail:"第一個要合併的範圍。"},range2:{name:"範圍2",detail:"其他要合併的範圍。"}}}},...{}},prompt:{helpExample:"範例",helpAbstract:"簡介",required:"必要。 ",optional:"可選。 "},error:{title:"錯誤",divByZero:"除數為零",name:"無效名稱",value:"值中的錯誤",num:"數值錯誤",na:"值不可用",cycle:"循環引用",ref:"無效的單元格引用",spill:"溢出區域不是空白區域",calc:"計算錯誤",error:"錯誤",connect:"正在連線中",null:"空值錯誤"},functionType:{financial:"財務",date:"日期與時間",math:"數學與三角函數",statistical:"統計",lookup:"尋找與引用",database:"資料庫",text:"文字",logical:"邏輯",information:"訊息",engineering:"工程",cube:"多維資料集",compatibility:"相容性",web:"Web",array:"數組",univer:"Univer",user:"使用者自訂",definedname:"定義名稱"},moreFunctions:{confirm:"應用",prev:"上一步",next:"下一步",searchFunctionPlaceholder:"搜尋函數",allFunctions:"全部函數",syntax:"語法"},operation:{pasteFormula:"僅貼上公式"}}}}); + + +// @univerjs/sheets-numfmt-ui/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsNumfmtUiZhTW=t())})(this,function(){"use strict";return{sheet:{numfmt:{percent:"百分比",title:"數字格式",numfmtType:"格式類型",cancel:"取消",confirm:"確認",general:"常規",accounting:"會計",text:"文字",number:"數值",currency:"貨幣",date:"日期",time:"時間",thousandthPercentile:"千分位符",preview:"範例",dateTime:"日期時間",decimalLength:"小數位數",currencyType:"貨幣類型",moreFmt:"更多格式",financialValue:"財務數值",roundingCurrency:"貨幣取整",timeDuration:"持續時間",currencyDes:"貨幣格式用來表示一般貨幣數值。會計格式可以對一列數值進行小數點對齊",accountingDes:"會計數字格式可對一列數值進行貨幣符號和小數點對齊",dateType:"日期類型",dateDes:"日期格式將日期和時間系列數值品顯示為日期值。",negType:"負數型別",generalDes:"常規格式不包含任何特定的數字格式。",thousandthPercentileDes:"千分位符號格式用於一般數字的表示。貨幣和會計格式則提供貨幣值計算的專用格式。",addDecimal:"增加小數位",subtractDecimal:"減少小數位",customFormat:"Custom Format",customFormatDes:"Generate custom number formats based on existing formats."}}}}); + + +// locale/zh-TW +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/design/locale/zh-TW"),require("@univerjs/docs-ui/locale/zh-TW"),require("@univerjs/sheets/locale/zh-TW"),require("@univerjs/sheets-formula/locale/zh-TW"),require("@univerjs/sheets-formula-ui/locale/zh-TW"),require("@univerjs/sheets-numfmt-ui/locale/zh-TW"),require("@univerjs/sheets-ui/locale/zh-TW"),require("@univerjs/ui/locale/zh-TW")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/design/locale/zh-TW","@univerjs/docs-ui/locale/zh-TW","@univerjs/sheets/locale/zh-TW","@univerjs/sheets-formula/locale/zh-TW","@univerjs/sheets-formula-ui/locale/zh-TW","@univerjs/sheets-numfmt-ui/locale/zh-TW","@univerjs/sheets-ui/locale/zh-TW","@univerjs/ui/locale/zh-TW"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsCoreZhTW=i(e.UniverCore,e.UniverDesignZhTW,e.UniverDocsUiZhTW,e.UniverSheetsZhTW,e.UniverSheetsFormulaZhTW,e.UniverSheetsFormulaUiZhTW,e.UniverSheetsNumfmtUiZhTW,e.UniverSheetsUiZhTW,e.UniverUiZhTW))})(this,function(e,i,r,s,u,n,h,t,o){"use strict";return e.merge({},i,r,s,u,n,h,t,o)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-data-validation.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/index.css similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-data-validation.css rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/index.css diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-data-validation.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/index.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-data-validation.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/index.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/en-US.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/en-US.js new file mode 100644 index 00000000..5da52119 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/en-US.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDataValidationUiEnUS=t())})(this,function(){"use strict";return{dataValidation:{title:"Data validation",validFail:{value:"Please input a value",common:"Please input value or formula",number:"Please input number or formula",formula:"Please input formula",integer:"Please input integer or formula",date:"Please input date or formula",list:"Please input options",listInvalid:"The list source must be a delimited list or a reference to a single row or column",checkboxEqual:"Enter different values for ticked and unticked cell contents.",formulaError:"The reference range contains invisible data, please readjust the range",listIntersects:"The selected range cannot intersect with the scope of the rules",primitive:"Formulas are not permitted for custom ticked and unticked values."},panel:{title:"Data validation management",addTitle:"Create new data validation",removeAll:"Remove All",add:"Add Rule",range:"Ranges",type:"Type",options:"Advance options",operator:"Operator",removeRule:"Remove",done:"Done",formulaPlaceholder:"Please input value or formula",valuePlaceholder:"Please input value",formulaAnd:"and",invalid:"Invalid",showWarning:"Show warning",rejectInput:"Reject input",messageInfo:"Helper message",showInfo:"Show help text for a selected cell",rangeError:"Ranges are not legal",allowBlank:"Allow blank values"},operators:{between:"between",greaterThan:"greater than",greaterThanOrEqual:"greater than or equal",lessThan:"less than",lessThanOrEqual:"less than or equal",equal:"equal",notEqual:"not equal",notBetween:"not between"},ruleName:{between:"is between {FORMULA1} and {FORMULA2}",greaterThan:"is greater than {FORMULA1}",greaterThanOrEqual:"is greater than or equal to {FORMULA1}",lessThan:"is less than {FORMULA1}",lessThanOrEqual:"is less than or equal to {FORMULA1}",equal:"is equal to {FORMULA1}",notEqual:"is not equal to {FORMULA1}",notBetween:"is not between {FORMULA1} and {FORMULA2}"},errorMsg:{between:"Value must be between {FORMULA1} and {FORMULA2}",greaterThan:"Value must be greater than {FORMULA1}",greaterThanOrEqual:"Value must be greater than or equal to {FORMULA1}",lessThan:"Value must be less than {FORMULA1}",lessThanOrEqual:"Value must be less than or equal to {FORMULA1}",equal:"Value must be equal to {FORMULA1}",notEqual:"Value must be not equal to {FORMULA1}",notBetween:"Value must be not between {FORMULA1} and {FORMULA2}"},any:{title:"Any value",error:"The content of this cell violates the validation rule"},date:{title:"Date",operators:{between:"between",greaterThan:"after",greaterThanOrEqual:"on or after",lessThan:"before",lessThanOrEqual:"on or before",equal:"equal",notEqual:"not equal",notBetween:"not between"},ruleName:{between:"is between {FORMULA1} and {FORMULA2}",greaterThan:"is after {FORMULA1}",greaterThanOrEqual:"is on or after {FORMULA1}",lessThan:"is before {FORMULA1}",lessThanOrEqual:"is on or before {FORMULA1}",equal:"is {FORMULA1}",notEqual:"is not {FORMULA1}",notBetween:"is not between {FORMULA1}"},errorMsg:{between:"Value must be a legal date and between {FORMULA1} and {FORMULA2}",greaterThan:"Value must be a legal date and after {FORMULA1}",greaterThanOrEqual:"Value must be a legal date and on or after {FORMULA1}",lessThan:"Value must be a legal date and before {FORMULA1}",lessThanOrEqual:"Value must be a legal date and on or before {FORMULA1}",equal:"Value must be a legal date and {FORMULA1}",notEqual:"Value must be a legal date and not {FORMULA1}",notBetween:"Value must be a legal date and not between {FORMULA1}"}},list:{title:"Dropdown",name:"Value contains one from range",error:"Input must fall within specified range",emptyError:"Please enter a value",add:"Add",dropdown:"Select",options:"Options",customOptions:"Custom",refOptions:"From a range",formulaError:"The list source must be a delimited list of data, or a reference to a single row or column.",edit:"Edit"},listMultiple:{title:"Dropdown-Multiple",dropdown:"Multiple select"},textLength:{title:"Text length",errorMsg:{between:"Text length must be between {FORMULA1} and {FORMULA2}",greaterThan:"Text length must be after {FORMULA1}",greaterThanOrEqual:"Text length must be on or after {FORMULA1}",lessThan:"Text length must be before {FORMULA1}",lessThanOrEqual:"Text length must be on or before {FORMULA1}",equal:"Text length must be {FORMULA1}",notEqual:"Text length must be not {FORMULA1}",notBetween:"Text length must be not between {FORMULA1}"}},decimal:{title:"Number"},whole:{title:"Integer"},checkbox:{title:"Checkbox",error:"This cell's contents violate its validation rule",tips:"Use custom values within cells",checked:"Selected value",unchecked:"Unselected value"},custom:{title:"Custom formula",error:"This cell's contents violate its validation rule",validFail:"Please input a valid formula",ruleName:"Custom formula is {FORMULA1}"},alert:{title:"Error",ok:"OK"},error:{title:"Invalid:"},renderMode:{arrow:"Arrow",chip:"Chip",text:"Plain text",label:"Display style"},showTime:{label:"Show TimePicker"}}}}); + + +// locale/en-US +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/en-US")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/en-US"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationEnUS=i(e.UniverCore,e.UniverSheetsDataValidationUiEnUS))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fa-IR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fa-IR.js new file mode 100644 index 00000000..48470dc7 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fa-IR.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/fa-IR +(function(e,a){typeof exports=="object"&&typeof module<"u"?module.exports=a():typeof define=="function"&&define.amd?define(a):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDataValidationUiFaIR=a())})(this,function(){"use strict";return{dataValidation:{title:"اعتبارسنجی داده",validFail:{value:"لطفا یک مقدار وارد کنید",common:"لطفا مقدار یا فرمول را وارد کنید",number:"لطفا عدد یا فرمول را وارد کنید",formula:"لطفا فرمول را وارد کنید",integer:"لطفا عدد صحیح یا فرمول را وارد کنید",date:"لطفا تاریخ یا فرمول را وارد کنید",list:"لطفا گزینه‌ها را وارد کنید",listInvalid:"منبع لیست باید یک لیست جدا شده یا یک مرجع به یک سطر یا ستون منفرد باشد",checkboxEqual:"برای محتوای سلول‌های علامت‌دار و علامت‌گذاری نشده، مقادیر متفاوتی وارد کنید.",formulaError:"محدوده مرجع حاوی داده‌های نامرئی است، لطفا محدوده را دوباره تنظیم کنید",listIntersects:"محدوده انتخاب شده نمی‌تواند با دامنه قوانین تداخل داشته باشد",primitive:"فرمول‌ها برای مقادیر سفارشی علامت‌دار و علامت‌گذاری نشده مجاز نیستند."},panel:{title:"مدیریت اعتبارسنجی داده",addTitle:"ایجاد اعتبارسنجی داده جدید",removeAll:"حذف همه",add:"افزودن قانون",range:"محدوده‌ها",type:"نوع",options:"گزینه‌های پیشرفته",operator:"عملگر",removeRule:"حذف",done:"انجام شد",formulaPlaceholder:"لطفا مقدار یا فرمول را وارد کنید",valuePlaceholder:"لطفا مقدار را وارد کنید",formulaAnd:"و",invalid:"نامعتبر",showWarning:"نمایش هشدار",rejectInput:"رد ورودی",messageInfo:"پیام راهنما",showInfo:"نمایش متن راهنما برای یک سلول انتخاب شده",rangeError:"محدوده‌ها نامعتبر هستند",allowBlank:"رد سلول خالی"},operators:{between:"بین",greaterThan:"بزرگتر از",greaterThanOrEqual:"بزرگتر از یا برابر با",lessThan:"کوچکتر از",lessThanOrEqual:"کوچکتر از یا برابر با",equal:"برابر است با",notEqual:"برابر نیست با",notBetween:"بین ... و ... نیست"},ruleName:{between:"بین {FORMULA1} و {FORMULA2} است",greaterThan:"بزرگتر از {FORMULA1} است",greaterThanOrEqual:"بزرگتر از یا برابر با {FORMULA1} است",lessThan:"کوچکتر از {FORMULA1} است",lessThanOrEqual:"کوچکتر از یا برابر با {FORMULA1} است",equal:"برابر است با {FORMULA1}",notEqual:"برابر نیست با {FORMULA1}",notBetween:"بین {FORMULA1} و {FORMULA2} نیست"},errorMsg:{between:"مقدار باید بین {FORMULA1} و {FORMULA2} باشد",greaterThan:"مقدار باید بزرگتر از {FORMULA1} باشد",greaterThanOrEqual:"مقدار باید بزرگتر از یا برابر با {FORMULA1} باشد",lessThan:"مقدار باید کوچکتر از {FORMULA1} باشد",lessThanOrEqual:"مقدار باید کوچکتر از یا برابر با {FORMULA1} باشد",equal:"مقدار باید برابر با {FORMULA1} باشد",notEqual:"مقدار باید برابر نیست با {FORMULA1}",notBetween:"مقدار باید بین {FORMULA1} و {FORMULA2} نباشد"},any:{title:"هر مقدار",error:"محتوای این سلول نقض قانون اعتبارسنجی است"},date:{title:"تاریخ",operators:{between:"بین",greaterThan:"بعد از",greaterThanOrEqual:"روی یا بعد از",lessThan:"قبل از",lessThanOrEqual:"روی یا قبل از",equal:"برابر است با",notEqual:"برابر نیست با",notBetween:"بین ... و ... نیست"},ruleName:{between:"بین {FORMULA1} و {FORMULA2} است",greaterThan:"بعد از {FORMULA1} است",greaterThanOrEqual:"روی یا بعد از {FORMULA1} است",lessThan:"قبل از {FORMULA1} است",lessThanOrEqual:"روی یا قبل از {FORMULA1} است",equal:"برابر است با {FORMULA1}",notEqual:"برابر نیست با {FORMULA1}",notBetween:"بین {FORMULA1} و {FORMULA2} نیست"},errorMsg:{between:"مقدار باید یک تاریخ معتبر و بین {FORMULA1} و {FORMULA2} باشد",greaterThan:"مقدار باید یک تاریخ معتبر و بعد از {FORMULA1} باشد",greaterThanOrEqual:"مقدار باید یک تاریخ معتبر و روی یا بعد از {FORMULA1} باشد",lessThan:"مقدار باید یک تاریخ معتبر و قبل از {FORMULA1} باشد",lessThanOrEqual:"مقدار باید یک تاریخ معتبر و روی یا قبل از {FORMULA1} باشد",equal:"مقدار باید یک تاریخ معتبر و {FORMULA1} باشد",notEqual:"مقدار باید یک تاریخ معتبر و نه {FORMULA1} باشد",notBetween:"مقدار باید یک تاریخ معتبر و بین {FORMULA1} و {FORMULA2} نباشد"}},list:{title:"لیست کشویی",name:"مقدار شامل یکی از محدوده است",error:"ورود باید در محدوده مشخص شده قرار گیرد",emptyError:"لطفا یک مقدار وارد کنید",add:"افزودن",dropdown:"انتخاب",options:"گزینه‌ها",customOptions:"سفارشی",refOptions:"از یک محدوده",formulaError:"منبع لیست باید یک لیست جدا شده از داده‌ها یا یک مرجع به یک سطر یا ستون منفرد باشد.",edit:"ویرایش"},listMultiple:{title:"لیست کشویی چندگانه",dropdown:"انتخاب چندگانه"},textLength:{title:"طول متن",errorMsg:{between:"طول متن باید بین {FORMULA1} و {FORMULA2} باشد",greaterThan:"طول متن باید بعد از {FORMULA1} باشد",greaterThanOrEqual:"طول متن باید روی یا بعد از {FORMULA1} باشد",lessThan:"طول متن باید قبل از {FORMULA1} باشد",lessThanOrEqual:"طول متن باید روی یا قبل از {FORMULA1} باشد",equal:"طول متن باید {FORMULA1} باشد",notEqual:"طول متن باید {FORMULA1} نباشد",notBetween:"طول متن باید بین {FORMULA1} و {FORMULA2} نباشد"}},decimal:{title:"عدد"},whole:{title:"عدد صحیح"},checkbox:{title:"کادر انتخاب",error:"محتوای این سلول با قانون اعتبارسنجی آن نقض می‌شود",tips:"از مقادیر سفارشی در سلول‌ها استفاده کنید",checked:"مقدار انتخاب شده",unchecked:"مقدار انتخاب نشده"},custom:{title:"فرمول سفارشی ",error:"محتوای این سلول با قانون اعتبارسنجی آن نقض می‌شود",validFail:"لطفا یک فرمول معتبر وارد کنید",ruleName:"فرمول سفارشی {FORMULA1}"},alert:{title:"خطا",ok:"باشه"},error:{title:"نامعتبر:"},renderMode:{arrow:"فلش",chip:"چیپ",text:"متن ساده",label:"سبک نمایش"},showTime:{label:"نمایش انتخاب‌گر زمان"}}}}); + + +// locale/fa-IR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/fa-IR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/fa-IR"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationFaIR=i(e.UniverCore,e.UniverSheetsDataValidationUiFaIR))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fr-FR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fr-FR.js new file mode 100644 index 00000000..301a771d --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/fr-FR.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/fr-FR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDataValidationUiFrFR=t())})(this,function(){"use strict";return{dataValidation:{title:"Validation des données",validFail:{value:"Veuillez entrer une valeur",common:"Veuillez entrer une valeur ou une formule",number:"Veuillez entrer un nombre ou une formule",formula:"Veuillez entrer une formule",integer:"Veuillez entrer un entier ou une formule",date:"Veuillez entrer une date ou une formule",list:"Veuillez entrer des options",listInvalid:"La source de la liste doit être une liste délimitée ou une référence à une seule ligne ou colonne",checkboxEqual:"Entrez des valeurs différentes pour les contenus des cellules cochées et décochées.",formulaError:"La plage de référence contient des données invisibles, veuillez réajuster la plage",listIntersects:"La plage sélectionnée ne peut pas croiser le champ des règles",primitive:"Les formules ne sont pas autorisées pour les valeurs personnalisées cochées et décochées."},panel:{title:"Gestion de la validation des données",addTitle:"Créer une nouvelle validation des données",removeAll:"Tout supprimer",add:"Ajouter une règle",range:"Plages",type:"Type",options:"Options avancées",operator:"Opérateur",removeRule:"Supprimer",done:"Terminé",formulaPlaceholder:"Veuillez entrer une valeur ou une formule",valuePlaceholder:"Veuillez entrer une valeur",formulaAnd:"et",invalid:"Invalide",showWarning:"Afficher un avertissement",rejectInput:"Rejeter l'entrée",messageInfo:"Message d'aide",showInfo:"Afficher le texte d'aide pour une cellule sélectionnée",rangeError:"Les plages ne sont pas légales",allowBlank:"Autoriser les valeurs vides"},operators:{between:"entre",greaterThan:"supérieur à",greaterThanOrEqual:"supérieur ou égal à",lessThan:"inférieur à",lessThanOrEqual:"inférieur ou égal à",equal:"égal à",notEqual:"différent de",notBetween:"pas entre"},ruleName:{between:"est entre {FORMULA1} et {FORMULA2}",greaterThan:"est supérieur à {FORMULA1}",greaterThanOrEqual:"est supérieur ou égal à {FORMULA1}",lessThan:"est inférieur à {FORMULA1}",lessThanOrEqual:"est inférieur ou égal à {FORMULA1}",equal:"est égal à {FORMULA1}",notEqual:"est différent de {FORMULA1}",notBetween:"n'est pas entre {FORMULA1} et {FORMULA2}"},errorMsg:{between:"La valeur doit être entre {FORMULA1} et {FORMULA2}",greaterThan:"La valeur doit être supérieure à {FORMULA1}",greaterThanOrEqual:"La valeur doit être supérieure ou égale à {FORMULA1}",lessThan:"La valeur doit être inférieure à {FORMULA1}",lessThanOrEqual:"La valeur doit être inférieure ou égale à {FORMULA1}",equal:"La valeur doit être égale à {FORMULA1}",notEqual:"La valeur doit être différente de {FORMULA1}",notBetween:"La valeur ne doit pas être entre {FORMULA1} et {FORMULA2}"},any:{title:"N'importe quelle valeur",error:"Le contenu de cette cellule viole la règle de validation"},date:{title:"Date",operators:{between:"entre",greaterThan:"après",greaterThanOrEqual:"le ou après",lessThan:"avant",lessThanOrEqual:"le ou avant",equal:"égal à",notEqual:"différent de",notBetween:"pas entre"},ruleName:{between:"est entre {FORMULA1} et {FORMULA2}",greaterThan:"est après {FORMULA1}",greaterThanOrEqual:"est le ou après {FORMULA1}",lessThan:"est avant {FORMULA1}",lessThanOrEqual:"est le ou avant {FORMULA1}",equal:"est {FORMULA1}",notEqual:"n'est pas {FORMULA1}",notBetween:"n'est pas entre {FORMULA1}"},errorMsg:{between:"La valeur doit être une date légale et entre {FORMULA1} et {FORMULA2}",greaterThan:"La valeur doit être une date légale et après {FORMULA1}",greaterThanOrEqual:"La valeur doit être une date légale et le ou après {FORMULA1}",lessThan:"La valeur doit être une date légale et avant {FORMULA1}",lessThanOrEqual:"La valeur doit être une date légale et le ou avant {FORMULA1}",equal:"La valeur doit être une date légale et {FORMULA1}",notEqual:"La valeur doit être une date légale et non {FORMULA1}",notBetween:"La valeur doit être une date légale et non entre {FORMULA1}"}},list:{title:"Liste déroulante",name:"La valeur contient une de la plage",error:"L'entrée doit être dans la plage spécifiée",emptyError:"Veuillez entrer une valeur",add:"Ajouter",dropdown:"Sélectionner",options:"Options",customOptions:"Personnalisé",refOptions:"D'une plage",formulaError:"La source de la liste doit être une liste délimitée de données, ou une référence à une seule ligne ou colonne.",edit:"Éditer"},listMultiple:{title:"Liste déroulante-Multiple",dropdown:"Sélection multiple"},textLength:{title:"Longueur du texte",errorMsg:{between:"La longueur du texte doit être entre {FORMULA1} et {FORMULA2}",greaterThan:"La longueur du texte doit être supérieure à {FORMULA1}",greaterThanOrEqual:"La longueur du texte doit être supérieure ou égale à {FORMULA1}",lessThan:"La longueur du texte doit être inférieure à {FORMULA1}",lessThanOrEqual:"La longueur du texte doit être inférieure ou égale à {FORMULA1}",equal:"La longueur du texte doit être {FORMULA1}",notEqual:"La longueur du texte doit être différente de {FORMULA1}",notBetween:"La longueur du texte ne doit pas être entre {FORMULA1} et {FORMULA2}"}},decimal:{title:"Nombre"},whole:{title:"Entier"},checkbox:{title:"Case à cocher",error:"Le contenu de cette cellule viole sa règle de validation",tips:"Utiliser des valeurs personnalisées dans les cellules",checked:"Valeur sélectionnée",unchecked:"Valeur non sélectionnée"},custom:{title:"Formule personnalisée",error:"Le contenu de cette cellule viole sa règle de validation",validFail:"Veuillez entrer une formule valide",ruleName:"La formule personnalisée est {FORMULA1}"},alert:{title:"Erreur",ok:"OK"},error:{title:"Invalide :"},renderMode:{arrow:"Flèche",chip:"Puce",text:"Texte brut",label:"Style d'affichage"},showTime:{label:"Afficher le sélecteur de temps"}}}}); + + +// locale/fr-FR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/fr-FR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/fr-FR"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationFrFR=i(e.UniverCore,e.UniverSheetsDataValidationUiFrFR))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/ru-RU.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/ru-RU.js new file mode 100644 index 00000000..b9c4430e --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/ru-RU.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDataValidationUiRuRU=t())})(this,function(){"use strict";return{dataValidation:{title:"Проверка данных",validFail:{value:"Пожалуйста, введите значение",common:"Пожалуйста, введите значение или формулу",number:"Пожалуйста, введите число или формулу",formula:"Пожалуйста, введите формулу",integer:"Пожалуйста, введите целое число или формулу",date:"Пожалуйста, введите дату или формулу",list:"Пожалуйста, введите параметры",listInvalid:"Источник списка должен быть разделенным списком или ссылкой на одну строку или столбец",checkboxEqual:"Для выбранных и не выбранных ячеек введите разные значения",formulaError:"Диапазон ссылок содержит невидимые данные, пожалуйста, пересмотрите диапазон",listIntersects:"Выбранный диапазон не может пересекаться с диапазоном правила.",primitive:"Formulas are not permitted for custom ticked and unticked values."},panel:{title:"Управление проверкой данных",addTitle:"Создать новую проверку данных",removeAll:"Удалить все",add:"добавить правило",range:"Диапазоны",rangeError:"Диапазоны не являются законными",type:"Тип",options:"Дополнительные параметры",operator:"Оператор",removeRule:"Удалить",done:"Готово",formulaPlaceholder:"Пожалуйста, введите значение или формулу",valuePlaceholder:"Пожалуйста, введите значение",formulaAnd:"и",invalid:"Недопустимо",showWarning:"Показать предупреждение",rejectInput:"Отклонить ввод",messageInfo:"Сообщение помощи",showInfo:"Показать текст помощи для выбранной ячейки",allowBlank:"Игнорировать пустые значения"},operators:{between:"между",greaterThan:"больше чем",greaterThanOrEqual:"больше или равно",lessThan:"меньше чем",lessThanOrEqual:"меньше или равно",equal:"равно",notEqual:"не равно",notBetween:"не между"},ruleName:{between:"между {FORMULA1} и {FORMULA2}",greaterThan:"больше чем {FORMULA1}",greaterThanOrEqual:"больше или равно {FORMULA1}",lessThan:"меньше чем {FORMULA1}",lessThanOrEqual:"меньше или равно {FORMULA1}",equal:"равно {FORMULA1}",notEqual:"не равно {FORMULA1}",notBetween:"не между {FORMULA1} и {FORMULA2}"},errorMsg:{between:"Значение должно быть между {FORMULA1} и {FORMULA2}",greaterThan:"Значение должно быть больше {FORMULA1}",greaterThanOrEqual:"Значение должно быть больше или равно {FORMULA1}",lessThan:"Значение должно быть меньше {FORMULA1}",lessThanOrEqual:"Значение должно быть меньше или равно {FORMULA1}",equal:"Значение должно быть равно {FORMULA1}",notEqual:"Значение должно быть не равно {FORMULA1}",notBetween:"Значение должно быть не между {FORMULA1} и {FORMULA2}"},any:{title:"Любое значение",error:"Содержимое этой ячейки нарушает правило проверки"},date:{title:"Дата",operators:{between:"между",greaterThan:"после",greaterThanOrEqual:"в или после",lessThan:"до",lessThanOrEqual:"в или до",equal:"равно",notEqual:"не равно",notBetween:"не между"},ruleName:{between:"между {FORMULA1} и {FORMULA2}",greaterThan:"после {FORMULA1}",greaterThanOrEqual:"в или после {FORMULA1}",lessThan:"до {FORMULA1}",lessThanOrEqual:"в или до {FORMULA1}",equal:"равно {FORMULA1}",notEqual:"не равно {FORMULA1}",notBetween:"не между {FORMULA1}"},errorMsg:{between:"Значение должно быть между {FORMULA1} и {FORMULA2}",greaterThan:"Значение должно быть после {FORMULA1}",greaterThanOrEqual:"Значение должно быть в или после {FORMULA1}",lessThan:"Значение должно быть до {FORMULA1}",lessThanOrEqual:"Значение должно быть в или до {FORMULA1}",equal:"Значение должно быть {FORMULA1}",notEqual:"Значение должно быть не {FORMULA1}",notBetween:"Значение должно быть не между {FORMULA1}"}},list:{title:"Выпадающий список",name:"Значение содержит одно из диапазона",error:"Ввод должен соответствовать указанному диапазону",emptyError:"Пожалуйста, введите значение",add:"Добавить",dropdown:"Выбрать",options:"Параметры",customOptions:"Пользовательские",refOptions:"Из диапазона",formulaError:"Источник списка должен быть разделенным списком данных или ссылкой на одну строку или столбец.",edit:"Редактировать"},listMultiple:{title:"Выпадающий список - Множественный",dropdown:"Множественный выбор"},textLength:{title:"Длина текста",errorMsg:{between:"Длина текста должна быть между {FORMULA1} и {FORMULA2}",greaterThan:"Длина текста должна быть больше {FORMULA1}",greaterThanOrEqual:"Длина текста должна быть больше или равна {FORMULA1}",lessThan:"Длина текста должна быть меньше {FORMULA1}",lessThanOrEqual:"Длина текста должна быть меньше или равна {FORMULA1}",equal:"Длина текста должна быть равна {FORMULA1}",notEqual:"Длина текста должна быть не равна {FORMULA1}",notBetween:"Длина текста должна быть не между {FORMULA1}"}},decimal:{title:"Число"},whole:{title:"Целое число"},checkbox:{title:"Флажок",error:"Содержимое этой ячейки нарушает правило проверки",tips:"Используйте пользовательские значения в ячейках",checked:"Выбранное значение",unchecked:"Не выбранное значение"},custom:{title:"Пользовательская формула",error:"Содержимое этой ячейки нарушает правило проверки",validFail:"Пожалуйста, введите допустимую формулу",ruleName:"Пользовательская формула {FORMULA1}"},alert:{title:"Ошибка",ok:"ОК"},error:{title:"Недопустимо:"},renderMode:{arrow:"Стрелка",chip:"Чип",text:"Простой текст",label:"Стиль отображения"},showTime:{label:"Показать выбор времени"}}}}); + + +// locale/ru-RU +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/ru-RU")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/ru-RU"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationRuRU=i(e.UniverCore,e.UniverSheetsDataValidationUiRuRU))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/vi-VN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/vi-VN.js new file mode 100644 index 00000000..8fd3454b --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/vi-VN.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/vi-VN +(function(n,h){typeof exports=="object"&&typeof module<"u"?module.exports=h():typeof define=="function"&&define.amd?define(h):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverSheetsDataValidationUiViVN=h())})(this,function(){"use strict";return{dataValidation:{title:"Xác thực dữ liệu",validFail:{value:"Vui lòng nhập một giá trị hợp lệ",common:"Vui lòng nhập giá trị hoặc công thức",number:"Vui lòng nhập một số hợp lệ hoặc công thức",formula:"Vui lòng nhập một công thức hợp lệ",integer:"Vui lòng nhập một số nguyên hợp lệ hoặc công thức",date:"Vui lòng nhập một ngày hợp lệ hoặc công thức",list:"Vui lòng nhập ít nhất một tùy chọn hợp lệ",listInvalid:"Nguồn danh sách phải là một danh sách phân tách hoặc một tham chiếu đến một hàng hoặc cột đơn.",checkboxEqual:"Nhập các giá trị khác nhau cho các ô được chọn và không được chọn.",formulaError:"Phạm vi tham chiếu chứa dữ liệu không hiển thị, vui lòng điều chỉnh lại phạm vi",listIntersects:"Phạm vi đã chọn không thể giao với phạm vi quy tắc",primitive:"Các giá trị tùy chỉnh cho ô được chọn và không được chọn không được phép sử dụng công thức."},panel:{title:"Quản lý xác thực dữ liệu",addTitle:"Tạo xác thực dữ liệu mới",removeAll:"Xóa tất cả",add:"Tạo quy tắc mới",range:"Phạm vi áp dụng",rangeError:"Phạm vi không hợp pháp",type:"Loại điều kiện",options:"Cài đặt nâng cao",operator:"Dữ liệu",removeRule:"Xóa quy tắc",done:"Xác nhận",formulaPlaceholder:"Vui lòng nhập giá trị hoặc công thức",valuePlaceholder:"Vui lòng nhập giá trị",formulaAnd:"Và",invalid:"Dữ liệu không hợp lệ khi",showWarning:"Hiển thị cảnh báo",rejectInput:"Từ chối đầu vào",messageInfo:"Thông báo",showInfo:"Hiển thị thông báo cho ô đã chọn",allowBlank:"Bỏ qua giá trị rỗng"},operators:{between:"Giữa",greaterThan:"Lớn hơn",greaterThanOrEqual:"Lớn hơn hoặc bằng",lessThan:"Nhỏ hơn",lessThanOrEqual:"Nhỏ hơn hoặc bằng",equal:"Bằng",notEqual:"Không bằng",notBetween:"Không nằm giữa"},ruleName:{between:"Giữa {FORMULA1} và {FORMULA2}",greaterThan:"Lớn hơn {FORMULA1}",greaterThanOrEqual:"Lớn hơn hoặc bằng {FORMULA1}",lessThan:"Nhỏ hơn {FORMULA1}",lessThanOrEqual:"Nhỏ hơn hoặc bằng {FORMULA1}",equal:"Bằng {FORMULA1}",notEqual:"Không bằng {FORMULA1}",notBetween:"Không nằm giữa {FORMULA1} và {FORMULA2}"},errorMsg:{between:"Giá trị phải nằm giữa {FORMULA1} và {FORMULA2}",greaterThan:"Giá trị phải lớn hơn {FORMULA1}",greaterThanOrEqual:"Giá trị phải lớn hơn hoặc bằng {FORMULA1}",lessThan:"Giá trị phải nhỏ hơn {FORMULA1}",lessThanOrEqual:"Giá trị phải nhỏ hơn hoặc bằng {FORMULA1}",equal:"Giá trị phải bằng {FORMULA1}",notEqual:"Giá trị phải không bằng {FORMULA1}",notBetween:"Giá trị phải không nằm giữa {FORMULA1} và {FORMULA2}"},any:{title:"Bất kỳ giá trị",error:"Nội dung của ô này vi phạm quy tắc xác thực"},date:{title:"Ngày",operators:{between:"Giữa",greaterThan:"Sau",greaterThanOrEqual:"Sau hoặc bằng",lessThan:"Trước",lessThanOrEqual:"Trước hoặc bằng",equal:"Bằng",notEqual:"Không bằng",notBetween:"Không nằm giữa"},ruleName:{between:"Giữa {FORMULA1} và {FORMULA2}",greaterThan:"Sau {FORMULA1}",greaterThanOrEqual:"Sau hoặc bằng {FORMULA1}",lessThan:"Trước {FORMULA1}",lessThanOrEqual:"Trước hoặc bằng {FORMULA1}",equal:"Bằng {FORMULA1}",notEqual:"Không bằng {FORMULA1}",notBetween:"Không nằm giữa {FORMULA1} và {FORMULA2}"},errorMsg:{between:"Ngày phải nằm giữa {FORMULA1} và {FORMULA2}",greaterThan:"Ngày phải sau {FORMULA1}",greaterThanOrEqual:"Ngày phải sau hoặc bằng {FORMULA1}",lessThan:"Ngày phải trước {FORMULA1}",lessThanOrEqual:"Ngày phải trước hoặc bằng {FORMULA1}",equal:"Ngày phải bằng {FORMULA1}",notEqual:"Ngày phải không bằng {FORMULA1}",notBetween:"Ngày phải không nằm giữa {FORMULA1} và {FORMULA2}"}},list:{title:"Danh sách thả xuống",name:"Giá trị phải nằm trong danh sách",error:"Đầu vào phải nằm trong phạm vi chỉ định",emptyError:"Vui lòng nhập một giá trị",add:"Thêm tùy chọn",dropdown:"Chọn một",options:"Nguồn tùy chọn",customOptions:"Tùy chỉnh",refOptions:"Tham chiếu dữ liệu",formulaError:"Nguồn danh sách phải là danh sách dữ liệu đã được phân chia rõ ràng, hoặc là tham chiếu đến một hàng hoặc cột đơn.",edit:"Biên tập"},listMultiple:{title:"Danh sách thả xuống - Chọn nhiều",dropdown:"Chọn nhiều"},textLength:{title:"Độ dài văn bản",errorMsg:{between:"Độ dài văn bản phải nằm giữa {FORMULA1} và {FORMULA2}",greaterThan:"Độ dài văn bản phải lớn hơn {FORMULA1}",greaterThanOrEqual:"Độ dài văn bản phải lớn hơn hoặc bằng {FORMULA1}",lessThan:"Độ dài văn bản phải nhỏ hơn {FORMULA1}",lessThanOrEqual:"Độ dài văn bản phải nhỏ hơn hoặc bằng {FORMULA1}",equal:"Độ dài văn bản phải bằng {FORMULA1}",notEqual:"Độ dài văn bản phải không bằng {FORMULA1}",notBetween:"Độ dài văn bản phải không nằm giữa {FORMULA1} và {FORMULA2}"}},decimal:{title:"Số thập phân"},whole:{title:"Số nguyên"},checkbox:{title:"Hộp kiểm",error:"Nội dung của ô này vi phạm quy tắc xác thực",tips:"Sử dụng giá trị tùy chỉnh trong ô",checked:"Giá trị khi chọn",unchecked:"Giá trị khi không chọn"},custom:{title:"Công thức tùy chỉnh",error:"Nội dung của ô này vi phạm quy tắc xác thực",validFail:"Vui lòng nhập một công thức hợp lệ",ruleName:"Công thức tùy chỉnh {FORMULA1}"},alert:{title:"Thông báo",ok:"Xác nhận"},error:{title:"Không hợp lệ:"},renderMode:{arrow:"Mũi tên",chip:"Nhãn dạng thanh",text:"Văn bản thuần túy",label:"Hiển thị kiểu"},showTime:{label:"Hiển thị lựa chọn thời gian"}}}}); + + +// locale/vi-VN +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/vi-VN")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/vi-VN"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationViVN=i(e.UniverCore,e.UniverSheetsDataValidationUiViVN))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-data-validation.locales.zh-CN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/zh-CN.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-data-validation.locales.zh-CN.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/zh-CN.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/zh-TW.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/zh-TW.js new file mode 100644 index 00000000..1829c61e --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-data-validation/locales/zh-TW.js @@ -0,0 +1,6 @@ +// @univerjs/sheets-data-validation-ui/locale/zh-TW +(function(e,a){typeof exports=="object"&&typeof module<"u"?module.exports=a():typeof define=="function"&&define.amd?define(a):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDataValidationUiZhTW=a())})(this,function(){"use strict";return{dataValidation:{title:"資料驗證",validFail:{value:"請輸入一個合法值",common:"請輸入數值或公式",number:"請輸入合法的數字或公式",formula:"請輸入合法的公式",integer:"請輸入合法的整數或公式",date:"請輸入合法的日期或公式",list:"請輸入至少一個合法選項",listInvalid:"清單來源必須是分隔清單或單行或列的參考。 ",checkboxEqual:"為勾選和未勾選的儲存格內容輸入不同的值。 ",formulaError:"引用範圍內包含不可見的數據,請重新調整範圍",listIntersects:"所選範圍不能和規則範圍相交",primitive:"自訂勾選和未勾選值不允許使用公式。 "},panel:{title:"管理資料驗證",addTitle:"新資料驗證",removeAll:"全部刪除",add:"新建規則",range:"應用範圍",rangeError:"應用範圍不合法",type:"條件型別",options:"進階設定",operator:"資料",removeRule:"刪除規則",done:"確認",formulaPlaceholder:"請輸入數值或公式",valuePlaceholder:"請輸入值",formulaAnd:"與",invalid:"資料無效時",showWarning:"顯示警告",rejectInput:"拒絕輸入",messageInfo:"文字提示",showInfo:"顯示所選單元格的提示文字",allowBlank:"忽略空值"},operators:{between:"介於",greaterThan:"大於",greaterThanOrEqual:"大於或等於",lessThan:"小於",lessThanOrEqual:"小於或等於",equal:"等於",notEqual:"不等於",notBetween:"未介於"},ruleName:{between:"介於 {FORMULA1} 和 {FORMULA2} 之間",greaterThan:"大於 {FORMULA1}",greaterThanOrEqual:"大於或等於 {FORMULA1}",lessThan:"小於 {FORMULA1}",lessThanOrEqual:"小於或等於 {FORMULA1}",equal:"等於 {FORMULA1}",notEqual:"不等於 {FORMULA1}",notBetween:"在 {FORMULA1} 和 {FORMULA2} 範圍之外"},errorMsg:{between:"值必須介於 {FORMULA1} 和 {FORMULA2} 之間",greaterThan:"值必須大於 {FORMULA1}",greaterThanOrEqual:"值必須大於或等於 {FORMULA1}",lessThan:"值必須小於 {FORMULA1}",lessThanOrEqual:"值必須小於或等於 {FORMULA1}",equal:"值必須等於 {FORMULA1}",notEqual:"值必須不等於 {FORMULA1}",notBetween:"值必須在 {FORMULA1} 和 {FORMULA2} 範圍之外"},any:{title:"任意值",error:"此儲存格的內容違反了驗證規則"},date:{title:"日期",operators:{between:"介於",greaterThan:"晚於",greaterThanOrEqual:"晚於或等於",lessThan:"早於",lessThanOrEqual:"早於或等於",equal:"等於",notEqual:"不等於",notBetween:"未介於"},ruleName:{between:"介於 {FORMULA1} 和 {FORMULA2} 之間",greaterThan:"晚於 {FORMULA1}",greaterThanOrEqual:"晚於或等於 {FORMULA1}",lessThan:"早於 {FORMULA1}",lessThanOrEqual:"早於或等於 {FORMULA1}",equal:"等於 {FORMULA1}",notEqual:"不等於 {FORMULA1}",notBetween:"在 {FORMULA1} 和 {FORMULA2} 範圍之外"},errorMsg:{between:"日期必須介於 {FORMULA1} 和 {FORMULA2} 之間",greaterThan:"日期必須晚於 {FORMULA1}",greaterThanOrEqual:"日期必須晚於或等於 {FORMULA1}",lessThan:"日期必須早於 {FORMULA1}",lessThanOrEqual:"早於或等於 {FORMULA1}",equal:"日期必須等於 {FORMULA1}",notEqual:"日期必須不等於 {FORMULA1}",notBetween:"日期必須在 {FORMULA1} 和 {FORMULA2} 範圍之外"}},list:{title:"下拉選單",name:"值必須是列表中的值",error:"輸入必須在指定的範圍內",emptyError:"請輸入一個值",add:"新增選項",dropdown:"單選",options:"選項來源",customOptions:"自訂",refOptions:"引用資料",formulaError:"列表來源必須是劃定分界後的資料列表,或是對單一行或一列的引用。 ",edit:"編輯"},listMultiple:{title:"下拉式選單-多選",dropdown:"多選"},textLength:{title:"文本長度",errorMsg:{between:"文本長度必須介於 {FORMULA1} 和 {FORMULA2} 之間",greaterThan:"文本長度必須大於 {FORMULA1}",greaterThanOrEqual:"文本長度必須大於或等於 {FORMULA1}",lessThan:"文字長度必須小於 {FORMULA1}",lessThanOrEqual:"文字長度必須小於或等於 {FORMULA1}",equal:"文本長度必須等於 {FORMULA1}",notEqual:"文字長度必須不等於 {FORMULA1}",notBetween:"文本長度必須在 {FORMULA1} 和 {FORMULA2} 範圍之外"}},decimal:{title:"數字"},whole:{title:"整數"},checkbox:{title:"複選框",error:"此儲存格的內容違反了驗證規則",tips:"在儲存格內使用自訂值",checked:"選取值",unchecked:"未選取值"},custom:{title:"自訂公式",error:"此儲存格的內容違反了驗證規則",validFail:"請輸入合法的公式",ruleName:"自訂公式 {FORMULA1}"},alert:{title:"提示",ok:"確定"},error:{title:"無效:"},renderMode:{arrow:"箭頭",chip:"條狀標籤",text:"純文字",label:"顯示樣式"},showTime:{label:"展示時間選擇"}}}}); + + +// locale/zh-TW +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/sheets-data-validation-ui/locale/zh-TW")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/sheets-data-validation-ui/locale/zh-TW"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDataValidationZhTW=i(e.UniverCore,e.UniverSheetsDataValidationUiZhTW))})(this,function(e,i){"use strict";return e.merge({},i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-drawing.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/index.css similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.preset-sheets-drawing.css rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/index.css diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-drawing.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/index.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-drawing.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/index.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/en-US.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/en-US.js new file mode 100644 index 00000000..f5b196a4 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/en-US.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/en-US +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDrawingUiEnUS=t())})(this,function(){"use strict";return{"image-popup":{replace:"Replace",delete:"Delete",edit:"Edit",crop:"Crop",reset:"Reset Size"},"image-cropper":{error:"Cannot crop non-image objects."},"image-panel":{arrange:{title:"Arrange",forward:"Bring Forward",backward:"Send Backward",front:"Bring to Front",back:"Send to Back"},transform:{title:"Transform",rotate:"Rotate (°)",x:"X (px)",y:"Y (px)",width:"Width (px)",height:"Height (px)",lock:"Lock Ratio (%)"},crop:{title:"Crop",start:"Start Crop",mode:"Free"},group:{title:"Group",group:"Group",reGroup:"Regroup",unGroup:"Ungroup"},align:{title:"Align",default:"Select Align Type",left:"Align Left",center:"Align Center",right:"Align Right",top:"Align Top",middle:"Align Middle",bottom:"Align Bottom",horizon:"Distribute Horizontally ",vertical:"Distribute Vertically "},null:"No Object Selection"}}}); + + +// @univerjs/sheets-drawing-ui/locale/en-US +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define(i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiEnUS=i())})(this,function(){"use strict";return{sheetImage:{title:"Image",upload:{float:"Float Image",cell:"Cell Image"},panel:{title:"Edit Image"}},"image-popup":{replace:"Replace",delete:"Delete",edit:"Edit",crop:"Crop",reset:"Reset Size"},"drawing-anchor":{title:"Anchor Properties",both:"Move and size with cells",position:"Move but don't size with cells",none:"Don't move or size with cells"},"update-status":{exceedMaxSize:"Image size exceeds limit, limit is {0}M",invalidImageType:"Invalid image type",exceedMaxCount:"Only {0} images can be uploaded at a time",invalidImage:"Invalid image"},"sheet-drawing-view":"Drawing",shortcut:{sheet:{"drawing-move-down":"Move Drawing down","drawing-move-up":"Move Drawing up","drawing-move-left":"Move Drawing left","drawing-move-right":"Move Drawing right","drawing-delete":"Delete Drawing"}}}}); + + +// locale/en-US +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/en-US"),require("@univerjs/sheets-drawing-ui/locale/en-US")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/en-US","@univerjs/sheets-drawing-ui/locale/en-US"],n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingEnUS=n(e.UniverCore,e.UniverDrawingUiEnUS,e.UniverSheetsDrawingUiEnUS))})(this,function(e,n,i){"use strict";return e.merge({},n,i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fa-IR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fa-IR.js new file mode 100644 index 00000000..42916f6e --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fa-IR.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDrawingUiFaIR=t())})(this,function(){"use strict";return{"image-popup":{replace:"تعویض",delete:"حذف",edit:"ویرایش",crop:"کراپ",reset:"بازنشانی اندازه"},"image-cropper":{error:"کراپ کردن اشیاء غیرتصویری امکان‌پذیر نیست."},"image-panel":{arrange:{title:"ترتیب‌دهی",forward:"آوردن به جلو",backward:"فرستادن به عقب",front:"آوردن به جلوی همه",back:"فرستادن به پشت همه"},transform:{title:"تبدیل",rotate:"چرخش (°)",x:"X (px)",y:"Y (px)",width:"عرض (px)",height:"ارتفاع (px)",lock:"قفل نسبت (%)"},crop:{title:"کراپ",start:"شروع کراپ",mode:"آزاد"},group:{title:"گروه",group:"گروه‌بندی",reGroup:"گروه‌بندی مجدد",unGroup:"لغو گروه‌بندی"},align:{title:"تراز",default:"انتخاب نوع تراز",left:"تراز چپ",center:"تراز وسط",right:"تراز راست",top:"تراز بالا",middle:"تراز وسط",bottom:"تراز پایین",horizon:"توزیع افقی",vertical:"توزیع عمودی"},null:"هیچ شیئی انتخاب نشده است"}}}); + + +// @univerjs/sheets-drawing-ui/locale/fa-IR +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiFaIR=t())})(this,function(){"use strict";return{sheetImage:{title:"تصویر",upload:{float:"شناور کردن تصویر",cell:"تصویر سلولی"},panel:{title:"ویرایش تصویر"}},"image-popup":{replace:"تعویض",delete:"حذف",edit:"ویرایش",crop:"کراپ",reset:"بازنشانی اندازه"},"drawing-anchor":{title:"خواص لنگر",both:"جابه‌جایی و تغییر اندازه با سلول‌ها",position:"جابه‌جایی اما تغییر اندازه نکردن با سلول‌ها",none:"جابه‌جایی یا تغییر اندازه نکردن با سلول‌ها"},"update-status":{exceedMaxSize:"اندازه تصویر از حد مجاز فراتر رفته است، حد مجاز {0}M است",invalidImageType:"نوع تصویر نامعتبر است",exceedMaxCount:"فقط {0} تصویر می‌توانند همزمان آپلود شوند",invalidImage:"تصویر نامعتبر است"},"sheet-drawing-view":"طراحی",shortcut:{sheet:{"drawing-move-down":"جابه‌جایی طراحی به پایین","drawing-move-up":"جابه‌جایی طراحی به بالا","drawing-move-left":"جابه‌جایی طراحی به چپ","drawing-move-right":"جابه‌جایی طراحی به راست","drawing-delete":"حذف طراحی"}}}}); + + +// locale/fa-IR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/fa-IR"),require("@univerjs/sheets-drawing-ui/locale/fa-IR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/fa-IR","@univerjs/sheets-drawing-ui/locale/fa-IR"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingFaIR=i(e.UniverCore,e.UniverDrawingUiFaIR,e.UniverSheetsDrawingUiFaIR))})(this,function(e,i,n){"use strict";return e.merge({},i,n)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fr-FR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fr-FR.js new file mode 100644 index 00000000..65c23054 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/fr-FR.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/fr-FR +(function(e,r){typeof exports=="object"&&typeof module<"u"?module.exports=r():typeof define=="function"&&define.amd?define(r):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDrawingUiFrFR=r())})(this,function(){"use strict";return{"image-popup":{replace:"Remplacer",delete:"Supprimer",edit:"Modifier",crop:"Rogner",reset:"Réinitialiser la taille"},"image-cropper":{error:"Impossible de rogner des objets non image."},"image-panel":{arrange:{title:"Arranger",forward:"Avancer",backward:"Reculer",front:"Mettre au premier plan",back:"Mettre à l'arrière-plan"},transform:{title:"Transformer",rotate:"Pivoter (°)",x:"X (px)",y:"Y (px)",width:"Largeur (px)",height:"Hauteur (px)",lock:"Verrouiller le ratio (%)"},crop:{title:"Rogner",start:"Commencer à rogner",mode:"Libre"},group:{title:"Grouper",group:"Grouper",reGroup:"Regrouper",unGroup:"Dégrouper"},align:{title:"Aligner",default:"Sélectionner le type d'alignement",left:"Aligner à gauche",center:"Aligner au centre",right:"Aligner à droite",top:"Aligner en haut",middle:"Aligner au milieu",bottom:"Aligner en bas",horizon:"Distribuer horizontalement",vertical:"Distribuer verticalement"},null:"Aucune sélection d'objet"}}}); + + +// @univerjs/sheets-drawing-ui/locale/fr-FR +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define(i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiFrFR=i())})(this,function(){"use strict";return{sheetImage:{title:"Image",upload:{float:"Image flottante",cell:"Image de cellule"},panel:{title:"Modifier l'image"}},"image-popup":{replace:"Remplacer",delete:"Supprimer",edit:"Éditer",crop:"Rogner",reset:"Réinitialiser la taille"},"drawing-anchor":{title:"Propriétés de l'ancre",both:"Déplacer et redimensionner avec les cellules",position:"Déplacer mais ne pas redimensionner avec les cellules",none:"Ne pas déplacer ni redimensionner avec les cellules"},"update-status":{exceedMaxSize:"La taille de l'image dépasse la limite, la limite est de {0}M",invalidImageType:"Type d'image invalide",exceedMaxCount:"Seulement {0} images peuvent être téléchargées à la fois",invalidImage:"Image invalide"},"sheet-drawing-view":"Dessin",shortcut:{sheet:{"drawing-move-down":"Déplacer le dessin vers le bas","drawing-move-up":"Déplacer le dessin vers le haut","drawing-move-left":"Déplacer le dessin vers la gauche","drawing-move-right":"Déplacer le dessin vers la droite","drawing-delete":"Supprimer le dessin"}}}}); + + +// locale/fr-FR +(function(e,r){typeof exports=="object"&&typeof module<"u"?module.exports=r(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/fr-FR"),require("@univerjs/sheets-drawing-ui/locale/fr-FR")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/fr-FR","@univerjs/sheets-drawing-ui/locale/fr-FR"],r):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingFrFR=r(e.UniverCore,e.UniverDrawingUiFrFR,e.UniverSheetsDrawingUiFrFR))})(this,function(e,r,i){"use strict";return e.merge({},r,i)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/ru-RU.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/ru-RU.js new file mode 100644 index 00000000..9972a538 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/ru-RU.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/ru-RU +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDrawingUiRuRU=t())})(this,function(){"use strict";return{"image-popup":{replace:"Заменить",delete:"Удалить",edit:"Редактировать",crop:"Обрезать",reset:"Сбросить размер"},"image-cropper":{error:"Невозможно обрезать не изображения."},"image-panel":{arrange:{title:"Расположение",forward:"Переместить вперёд",backward:"Переместить назад",front:"На передний план",back:"На задний план"},transform:{title:"Трансформация",rotate:"Повернуть (°)",x:"X (пкс)",y:"Y (пкс)",width:"Ширина (пкс)",height:"Высота (пкс)",lock:"Заблокировать пропорции (%)"},crop:{title:"Обрезка",start:"Начать обрезку",mode:"Свободный"},group:{title:"Группировка",group:"Сгруппировать",reGroup:"Перегруппировать",unGroup:"Разгруппировать"},align:{title:"Выравнивание",default:"Выберите тип выравнивания",left:"Выровнять по левому краю",center:"Выровнять по центру",right:"Выровнять по правому краю",top:"Выровнять по верхнему краю",middle:"Выровнять посередине",bottom:"Выровнять по нижнему краю",horizon:"Распределить горизонтально",vertical:"Распределить вертикально"},null:"Нет выбранных объектов"}}}); + + +// @univerjs/sheets-drawing-ui/locale/ru-RU +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i():typeof define=="function"&&define.amd?define(i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiRuRU=i())})(this,function(){"use strict";return{sheetImage:{title:"Изображение",upload:{float:"Плавающее изображение",cell:"Изображение в ячейке"},panel:{title:"Редактировать изображение"}},"image-popup":{replace:"Заменить",delete:"Удалить",edit:"Редактировать",crop:"Обрезать",reset:"Сбросить размер"},"drawing-anchor":{title:"Свойства привязки",both:"Перемещать и изменять размер с ячейками",position:"Перемещать, но не изменять размер с ячейками",none:"Не перемещать и не изменять размер с ячейками"},"update-status":{exceedMaxSize:"Размер изображения превышает лимит, лимит составляет {0}М",invalidImageType:"Недопустимый тип изображения",exceedMaxCount:"За один раз можно загрузить только {0} изображений",invalidImage:"Недопустимое изображение"},"sheet-drawing-view":"Drawing",shortcut:{sheet:{"drawing-move-down":"Move Drawing down","drawing-move-up":"Move Drawing up","drawing-move-left":"Move Drawing left","drawing-move-right":"Move Drawing right","drawing-delete":"Delete Drawing"}}}}); + + +// locale/ru-RU +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/ru-RU"),require("@univerjs/sheets-drawing-ui/locale/ru-RU")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/ru-RU","@univerjs/sheets-drawing-ui/locale/ru-RU"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingRuRU=i(e.UniverCore,e.UniverDrawingUiRuRU,e.UniverSheetsDrawingUiRuRU))})(this,function(e,i,r){"use strict";return e.merge({},i,r)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/vi-VN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/vi-VN.js new file mode 100644 index 00000000..9f1e7ce4 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/vi-VN.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/vi-VN +(function(n,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self,n.UniverDrawingUiViVN=t())})(this,function(){"use strict";return{"image-popup":{replace:"Thay thế",delete:"Xóa",edit:"Chỉnh sửa",crop:"Cắt",reset:"Đặt lại kích thước"},"image-cropper":{error:"Không thể cắt phần tử không phải hình ảnh"},"image-panel":{arrange:{title:"Sắp xếp",forward:"Di chuyển lên một lớp",backward:"Di chuyển xuống một lớp",front:"Đưa lên trên cùng",back:"Đưa xuống dưới cùng"},transform:{title:"Biến đổi",rotate:"Xoay (°)",x:"X (px)",y:"Y (px)",width:"Chiều rộng (px)",height:"Chiều cao (px)",lock:"Khóa tỷ lệ (%)"},crop:{title:"Cắt",start:"Bắt đầu cắt",mode:"Cắt tự do tỷ lệ"},group:{title:"Nhóm",group:"Nhóm",reGroup:"Nhóm lại",unGroup:"Hủy nhóm"},align:{title:"Căn chỉnh",default:"Chọn cách căn chỉnh",left:"Căn trái",center:"Căn giữa theo chiều ngang",right:"Căn phải",top:"Căn trên",middle:"Căn giữa theo chiều dọc",bottom:"Căn dưới",horizon:"Phân phối theo chiều ngang",vertical:"Phân phối theo chiều dọc"},null:"Không có đối tượng nào được chọn"}}}); + + +// @univerjs/sheets-drawing-ui/locale/vi-VN +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiViVN=n())})(this,function(){"use strict";return{sheetImage:{title:"Hình ảnh",upload:{float:"Hình ảnh nổi",cell:"Hình ảnh trong ô"},panel:{title:"Chỉnh sửa hình ảnh"}},"image-popup":{replace:"Thay thế",delete:"Xóa",edit:"Chỉnh sửa",crop:"Cắt",reset:"Đặt lại kích thước"},"drawing-anchor":{title:"Thuộc tính neo",both:"Di chuyển và thay đổi kích thước cùng với ô",position:"Di chuyển nhưng không thay đổi kích thước với ô",none:"Không di chuyển hoặc thay đổi kích thước với ô"},"update-status":{exceedMaxSize:"Kích thước hình ảnh vượt quá giới hạn, giới hạn là {0}M",invalidImageType:"Loại hình ảnh không hợp lệ",exceedMaxCount:"Chỉ có thể tải lên {0} hình ảnh một lần",invalidImage:"Hình ảnh không hợp lệ"},"sheet-drawing-view":"Drawing",shortcut:{sheet:{"drawing-move-down":"Move Drawing down","drawing-move-up":"Move Drawing up","drawing-move-left":"Move Drawing left","drawing-move-right":"Move Drawing right","drawing-delete":"Delete Drawing"}}}}); + + +// locale/vi-VN +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/vi-VN"),require("@univerjs/sheets-drawing-ui/locale/vi-VN")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/vi-VN","@univerjs/sheets-drawing-ui/locale/vi-VN"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingViVN=i(e.UniverCore,e.UniverDrawingUiViVN,e.UniverSheetsDrawingUiViVN))})(this,function(e,i,n){"use strict";return e.merge({},i,n)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-drawing.locales.zhCN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/zh-CN.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.preset-sheets-drawing.locales.zhCN.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/zh-CN.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/zh-TW.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/zh-TW.js new file mode 100644 index 00000000..3fecc2e3 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.preset-sheets-drawing/locales/zh-TW.js @@ -0,0 +1,10 @@ +// @univerjs/drawing-ui/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverDrawingUiZhTW=t())})(this,function(){"use strict";return{"image-popup":{replace:"替換",delete:"刪除",edit:"編輯",crop:"裁切",reset:"重置大小"},"image-cropper":{error:"無法裁切非圖片元素"},"image-panel":{arrange:{title:"排列",forward:"上移一層",backward:"下移一層",front:"置於頂層",back:"置於底層"},transform:{title:"變換",rotate:"旋轉 (°)",x:"X (px)",y:"Y (px)",width:"寬度 (px)",height:"高度 (px)",lock:"鎖定比例 (%)"},crop:{title:"裁切",start:"開始裁切",mode:"自由比例裁切"},group:{title:"組合",group:"組合",reGroup:"重新組合",unGroup:"取消組合"},align:{title:"對齊方式",default:"選擇對齊方式",left:"左對齊",center:"水平居中",right:"右對齊",top:"頂部對齊",middle:"垂直居中",bottom:"底部對齊",horizon:"水平分佈",vertical:"垂直分佈"},null:"未選取任何物件"}}}); + + +// @univerjs/sheets-drawing-ui/locale/zh-TW +(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsDrawingUiZhTW=t())})(this,function(){"use strict";return{sheetImage:{title:"圖片",upload:{float:"浮動圖片",cell:"儲存格圖片"},panel:{title:"編圖"}},"image-popup":{replace:"替換",delete:"刪除",edit:"編輯",crop:"裁切",reset:"重置大小"},"drawing-anchor":{title:"錨點屬性",both:"與儲存格一起移動和調整大小",position:"移動但不調整大小與儲存格",none:"不要移動或調整大小與單元格"},"update-status":{exceedMaxSize:"圖片大小超過限制, 限制為{0}M",invalidImageType:"圖片類型錯誤",exceedMaxCount:"圖片只能一次上傳{0}張",invalidImage:"無效圖片"},"sheet-drawing-view":"繪圖",shortcut:{sheet:{"drawing-move-down":"下移繪圖","drawing-move-up":"上移繪圖","drawing-move-left":"左移繪圖","drawing-move-right":"右移繪圖","drawing-delete":"刪除繪圖"}}}}); + + +// locale/zh-TW +(function(e,i){typeof exports=="object"&&typeof module<"u"?module.exports=i(require("@univerjs/core"),require("@univerjs/drawing-ui/locale/zh-TW"),require("@univerjs/sheets-drawing-ui/locale/zh-TW")):typeof define=="function"&&define.amd?define(["@univerjs/core","@univerjs/drawing-ui/locale/zh-TW","@univerjs/sheets-drawing-ui/locale/zh-TW"],i):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverPresetSheetsDrawingZhTW=i(e.UniverCore,e.UniverDrawingUiZhTW,e.UniverSheetsDrawingUiZhTW))})(this,function(e,i,n){"use strict";return e.merge({},i,n)}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.presets.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.presets.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.presets.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.presets.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.sheets-zen-editor.css b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/index.css similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/css/univerjs.sheets-zen-editor.css rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/index.css diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.sheets-zen-editor.umd.min.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/index.umd.min.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.sheets-zen-editor.umd.min.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/index.umd.min.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/en-US.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/en-US.js new file mode 100644 index 00000000..b76ef297 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/en-US.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorEnUS=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"Full Screen Editor"},shortcut:{sheet:{"zen-edit-cancel":"Cancel Zen Edit","zen-edit-confirm":"Confirm Zen Edit"}}}}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fa-IR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fa-IR.js new file mode 100644 index 00000000..9eaf86cb --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fa-IR.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorFaIR=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"ویرایشگر تمام صفحه"},shortcut:{sheet:{"zen-edit-cancel":"لغو ویرایش Zen","zen-edit-confirm":"تایید ویرایش Zen"}}}}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fr-FR.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fr-FR.js new file mode 100644 index 00000000..55d8fe27 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/fr-FR.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorFrFR=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"Éditeur plein écran"},shortcut:{sheet:{"zen-edit-cancel":"Annuler l'édition plein écran","zen-edit-confirm":"Confirmer l'édition plein écran"}}}}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/ru-RU.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/ru-RU.js new file mode 100644 index 00000000..9e7b4529 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/ru-RU.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorRuRU=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"Редактор на весь экран"},shortcut:{sheet:{"zen-edit-cancel":"Отменить Zen редактирование","zen-edit-confirm":"Подтвердить Zen редактирование"}}}}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/vi-VN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/vi-VN.js new file mode 100644 index 00000000..3916d8a6 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/vi-VN.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorViVN=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"Chế độ chỉnh sửa Zen"},shortcut:{sheet:{"zen-edit-cancel":"Hủy chỉnh sửa (trạng thái Zen mode)","zen-edit-confirm":"Bỏ chỉnh sửa (trạng thái Zen mode)"}}}}); diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.sheets-zen-editor.locales.zh-CN.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/zh-CN.js similarity index 100% rename from src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/js/univerjs.sheets-zen-editor.locales.zh-CN.js rename to src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/zh-CN.js diff --git a/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/zh-TW.js b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/zh-TW.js new file mode 100644 index 00000000..1c73f6e2 --- /dev/null +++ b/src/components/BootstrapBlazor.UniverSheet/wwwroot/univer/univerjs.sheets-zen-editor/locales/zh-TW.js @@ -0,0 +1 @@ +(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.UniverSheetsZenEditorZhTW=n())})(this,function(){"use strict";return{rightClick:{zenEditor:"禪模式編輯"},shortcut:{sheet:{"zen-edit-cancel":"取消編輯(禪模式狀態)","zen-edit-confirm":"放棄編輯(禪模式狀態)"}}}});